diff --git a/src/Fable.Build/GithubRelease.fs b/src/Fable.Build/GithubRelease.fs
index 72009c80b..64c143269 100644
--- a/src/Fable.Build/GithubRelease.fs
+++ b/src/Fable.Build/GithubRelease.fs
@@ -67,4 +67,5 @@ let handle (args: string list) =
createReleaseCommitAndPush versionInfo
- createGithubRelease githubToken versionInfo
+// Disable Github release for now, because it's not working
+// createGithubRelease githubToken versionInfo
diff --git a/src/Fable.Cli/CHANGELOG.md b/src/Fable.Cli/CHANGELOG.md
index 43749f892..11470b513 100644
--- a/src/Fable.Cli/CHANGELOG.md
+++ b/src/Fable.Cli/CHANGELOG.md
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
+## 5.0.0-alpha.5 - 2025-01-09
+
### Added
* [JS/TS/Python] Add new `TimeSpan` overloads support coming from .NET 9.0 (by @MangelMaxime)
diff --git a/src/Fable.Cli/Fable.Cli.fsproj b/src/Fable.Cli/Fable.Cli.fsproj
index a43f02580..16002a118 100644
--- a/src/Fable.Cli/Fable.Cli.fsproj
+++ b/src/Fable.Cli/Fable.Cli.fsproj
@@ -4,13 +4,16 @@
true
Exe
net8.0
- 5.0.0-alpha.4
- ## Fixed
+ 5.0.0-alpha.5
+ ## Added
-- [TS] Make discriminated union `.Is*` properties works (@MangelMaxime)
-- [JS/TS/Python] Fix `h` in `DateTime.ToString` (@MangelMaxime)
-- [JS/TS] Fix `hh` in `DateTime.ToString` (@MangelMaxime)
-- [JS/TS] Don't generate the setter code if a property is decorated with `[<Erase>]` (@MangelMaxime)
+- [JS/TS/Python] Add new `TimeSpan` overloads support coming from .NET 9.0 (by @MangelMaxime)
+- [Rust] Add new `TimeSpan` overloads support coming from .NET 9.0 (by @ncave)
+
+## Fixed
+
+- [JS/TS] Fix `DateTimeOffset.ToLocalTime` (by @MangelMaxime)
+- [All] Don't fails silently if an unknown argument is provided, instead log the error and print the help message (by @MangelMaxime)
diff --git a/src/Fable.Compiler/CHANGELOG.md b/src/Fable.Compiler/CHANGELOG.md
index 40bf38cf6..4c591ac2e 100644
--- a/src/Fable.Compiler/CHANGELOG.md
+++ b/src/Fable.Compiler/CHANGELOG.md
@@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
+## 5.0.0-alpha.5 - 2025-01-09
+
### Added
* [JS/TS/Python] Add new `TimSpan` overload support coming from .NET 9 (by @MangelMaxime)
+* [Rust] Add new `TimeSpan` overloads support coming from .NET 9.0 (by @ncave)
### Fixed
diff --git a/src/Fable.Compiler/Fable.Compiler.fsproj b/src/Fable.Compiler/Fable.Compiler.fsproj
index 90763cdd7..6c0e6c6a2 100644
--- a/src/Fable.Compiler/Fable.Compiler.fsproj
+++ b/src/Fable.Compiler/Fable.Compiler.fsproj
@@ -6,13 +6,15 @@
true
true
Fable.Compiler
- 5.0.0-alpha.4
- ## Fixed
+ 5.0.0-alpha.5
+ ## Added
-- [TS] Make discriminated union `.Is*` properties works (@MangelMaxime)
-- [JS/TS/Python] Fix `h` in `DateTime.ToString` (@MangelMaxime)
-- [JS/TS] Fix `hh` in `DateTime.ToString` (@MangelMaxime)
-- [JS/TS] Don't generate the setter code if a property is decorated with `[<Erase>]` (@MangelMaxime)
+- [JS/TS/Python] Add new `TimSpan` overload support coming from .NET 9 (by @MangelMaxime)
+- [Rust] Add new `TimeSpan` overloads support coming from .NET 9.0 (by @ncave)
+
+## Fixed
+
+- [JS/TS] Fix `DateTimeOffset.ToLocalTime` (by @MangelMaxime)
embedded
diff --git a/src/Fable.Transforms/Global/Compiler.fs b/src/Fable.Transforms/Global/Compiler.fs
index 056663281..b45e23c56 100644
--- a/src/Fable.Transforms/Global/Compiler.fs
+++ b/src/Fable.Transforms/Global/Compiler.fs
@@ -2,10 +2,10 @@ namespace Fable
module Literals =
[]
- let VERSION = "5.0.0-alpha.4"
+ let VERSION = "5.0.0-alpha.5"
[]
- let JS_LIBRARY_VERSION = "1.8.0"
+ let JS_LIBRARY_VERSION = "1.9.0"
type CompilerOptionsHelper =
static member Make
diff --git a/src/fable-library-ts/CHANGELOG.md b/src/fable-library-ts/CHANGELOG.md
index 72b92a1ce..1cb132b79 100644
--- a/src/fable-library-ts/CHANGELOG.md
+++ b/src/fable-library-ts/CHANGELOG.md
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
+## 1.9.0 - 2025-01-09
+
### Added
* [JS/TS] Add new `TimSpan` overload support coming from .NET 9 (by @MangelMaxime)
diff --git a/src/fable-library-ts/package.json b/src/fable-library-ts/package.json
index 9a32175e0..cf492f64e 100644
--- a/src/fable-library-ts/package.json
+++ b/src/fable-library-ts/package.json
@@ -3,7 +3,7 @@
"private": false,
"type": "module",
"name": "@fable-org/fable-library-ts",
- "version": "1.8.0",
+ "version": "1.9.0",
"description": "Core library used by F# projects compiled with fable.io",
"author": "Fable Contributors",
"license": "MIT",