Skip to content

Commit 58d32ae

Browse files
committed
Release 5.0.0-alpha.5
1 parent 7c93b15 commit 58d32ae

File tree

8 files changed

+29
-16
lines changed

8 files changed

+29
-16
lines changed

src/Fable.Build/GithubRelease.fs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,5 @@ let handle (args: string list) =
6767

6868
createReleaseCommitAndPush versionInfo
6969

70-
createGithubRelease githubToken versionInfo
70+
// Disable Github release for now, because it's not working
71+
// createGithubRelease githubToken versionInfo

src/Fable.Cli/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 5.0.0-alpha.5 - 2025-01-09
11+
1012
### Added
1113

1214
* [JS/TS/Python] Add new `TimeSpan` overloads support coming from .NET 9.0 (by @MangelMaxime)

src/Fable.Cli/Fable.Cli.fsproj

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,16 @@
44
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
55
<OutputType>Exe</OutputType>
66
<TargetFramework>net8.0</TargetFramework>
7-
<Version>5.0.0-alpha.4</Version>
8-
<PackageReleaseNotes>## Fixed
7+
<Version>5.0.0-alpha.5</Version>
8+
<PackageReleaseNotes>## Added
99

10-
- [TS] Make discriminated union `.Is*` properties works (@MangelMaxime)
11-
- [JS/TS/Python] Fix `h` in `DateTime.ToString` (@MangelMaxime)
12-
- [JS/TS] Fix `hh` in `DateTime.ToString` (@MangelMaxime)
13-
- [JS/TS] Don't generate the setter code if a property is decorated with `[&lt;Erase&gt;]` (@MangelMaxime)
10+
- [JS/TS/Python] Add new `TimeSpan` overloads support coming from .NET 9.0 (by @MangelMaxime)
11+
- [Rust] Add new `TimeSpan` overloads support coming from .NET 9.0 (by @ncave)
12+
13+
## Fixed
14+
15+
- [JS/TS] Fix `DateTimeOffset.ToLocalTime` (by @MangelMaxime)
16+
- [All] Don't fails silently if an unknown argument is provided, instead log the error and print the help message (by @MangelMaxime)
1417

1518
</PackageReleaseNotes>
1619
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->

src/Fable.Compiler/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 5.0.0-alpha.5 - 2025-01-09
11+
1012
### Added
1113

1214
* [JS/TS/Python] Add new `TimSpan` overload support coming from .NET 9 (by @MangelMaxime)
15+
* [Rust] Add new `TimeSpan` overloads support coming from .NET 9.0 (by @ncave)
1316

1417
### Fixed
1518

src/Fable.Compiler/Fable.Compiler.fsproj

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@
66
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
77
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
88
<RootNamespace>Fable.Compiler</RootNamespace>
9-
<Version>5.0.0-alpha.4</Version>
10-
<PackageReleaseNotes>## Fixed
9+
<Version>5.0.0-alpha.5</Version>
10+
<PackageReleaseNotes>## Added
1111

12-
- [TS] Make discriminated union `.Is*` properties works (@MangelMaxime)
13-
- [JS/TS/Python] Fix `h` in `DateTime.ToString` (@MangelMaxime)
14-
- [JS/TS] Fix `hh` in `DateTime.ToString` (@MangelMaxime)
15-
- [JS/TS] Don't generate the setter code if a property is decorated with `[&lt;Erase&gt;]` (@MangelMaxime)
12+
- [JS/TS/Python] Add new `TimSpan` overload support coming from .NET 9 (by @MangelMaxime)
13+
- [Rust] Add new `TimeSpan` overloads support coming from .NET 9.0 (by @ncave)
14+
15+
## Fixed
16+
17+
- [JS/TS] Fix `DateTimeOffset.ToLocalTime` (by @MangelMaxime)
1618

1719
</PackageReleaseNotes>
1820
<DebugType>embedded</DebugType>

src/Fable.Transforms/Global/Compiler.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ namespace Fable
22

33
module Literals =
44
[<Literal>]
5-
let VERSION = "5.0.0-alpha.4"
5+
let VERSION = "5.0.0-alpha.5"
66

77
[<Literal>]
8-
let JS_LIBRARY_VERSION = "1.8.0"
8+
let JS_LIBRARY_VERSION = "1.9.0"
99

1010
type CompilerOptionsHelper =
1111
static member Make

src/fable-library-ts/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 1.9.0 - 2025-01-09
11+
1012
### Added
1113

1214
* [JS/TS] Add new `TimSpan` overload support coming from .NET 9 (by @MangelMaxime)

src/fable-library-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": false,
44
"type": "module",
55
"name": "@fable-org/fable-library-ts",
6-
"version": "1.8.0",
6+
"version": "1.9.0",
77
"description": "Core library used by F# projects compiled with fable.io",
88
"author": "Fable Contributors",
99
"license": "MIT",

0 commit comments

Comments
 (0)