File tree Expand file tree Collapse file tree 8 files changed +29
-16
lines changed
Expand file tree Collapse file tree 8 files changed +29
-16
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change 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 `[< Erase> ]` (@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 -->
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 `[< Erase> ]` (@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 >
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ namespace Fable
22
33module 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
1010type CompilerOptionsHelper =
1111 static member Make
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments