diff --git a/src/Fable.Cli/CHANGELOG.md b/src/Fable.Cli/CHANGELOG.md index 7dd514f4a..52d3657dc 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.3 - 2024-12-18 + ### Fixed * [Python] Fix type testing against `uint8`, `uint32`, `uint64`, `decimal` (@MangelMaxime) diff --git a/src/Fable.Cli/Fable.Cli.fsproj b/src/Fable.Cli/Fable.Cli.fsproj index 5b0467422..152553c49 100644 --- a/src/Fable.Cli/Fable.Cli.fsproj +++ b/src/Fable.Cli/Fable.Cli.fsproj @@ -4,10 +4,11 @@ true Exe net8.0 - 5.0.0-alpha.2 + 5.0.0-alpha.3 ## Fixed -- [All] Allow Fable 5 to be used with Fable 4 plugins (@ncave) +- [Python] Fix type testing against `uint8`, `uint32`, `uint64`, `decimal` (@MangelMaxime) +- [JS/TS] Workaround source map generation bug (deteriorate them a little) (@MangelMaxime) diff --git a/src/Fable.Compiler/CHANGELOG.md b/src/Fable.Compiler/CHANGELOG.md index 2d73446e0..1d1fa6e81 100644 --- a/src/Fable.Compiler/CHANGELOG.md +++ b/src/Fable.Compiler/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 5.0.0-alpha.3 - 2024-12-18 + +### Fixed + +* [Python] Fix type testing against `uint8`, `uint32`, `uint64`, `decimal` (@MangelMaxime) +* [JS/TS] Workaround source map generation bug (deteriorate them a little) (@MangelMaxime) + ## 5.0.0-alpha.2 - 2024-11-25 ### Fixed diff --git a/src/Fable.Compiler/Fable.Compiler.fsproj b/src/Fable.Compiler/Fable.Compiler.fsproj index 99b6e30c9..71dee0153 100644 --- a/src/Fable.Compiler/Fable.Compiler.fsproj +++ b/src/Fable.Compiler/Fable.Compiler.fsproj @@ -6,10 +6,11 @@ true true Fable.Compiler - 5.0.0-alpha.2 + 5.0.0-alpha.3 ## Fixed -- [All] Allow Fable 5 to be used with Fable 4 plugins (@ncave) +- [Python] Fix type testing against `uint8`, `uint32`, `uint64`, `decimal` (@MangelMaxime) +- [JS/TS] Workaround source map generation bug (deteriorate them a little) (@MangelMaxime) embedded diff --git a/src/Fable.Transforms/Global/Compiler.fs b/src/Fable.Transforms/Global/Compiler.fs index 1bfc86411..7f09d2f69 100644 --- a/src/Fable.Transforms/Global/Compiler.fs +++ b/src/Fable.Transforms/Global/Compiler.fs @@ -2,7 +2,7 @@ namespace Fable module Literals = [] - let VERSION = "5.0.0-alpha.2" + let VERSION = "5.0.0-alpha.3" [] let JS_LIBRARY_VERSION = "1.7.0"