diff --git a/src/Fable.Cli/CHANGELOG.md b/src/Fable.Cli/CHANGELOG.md index 3d56ae3c15..6fc88b8edd 100644 --- a/src/Fable.Cli/CHANGELOG.md +++ b/src/Fable.Cli/CHANGELOG.md @@ -6,10 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 4.2.2 - 2023-10-14 + ### Fixed -* [Python] Fix #3527: Fix error `name '...' is not defined` -* [Python] Fix #3496: Python target is confused with class taking a `length: int ` argument +* [Python] Fix #3527: Fix error `name '...' is not defined` (by @dbrattli) +* [Python] Fix #3496: Python target is confused with class taking a `length: int ` argument (by @dbrattli) ## 4.2.1 - 2023-09-29 diff --git a/src/Fable.Cli/Fable.Cli.fsproj b/src/Fable.Cli/Fable.Cli.fsproj index 9e23a5a4fe..3f6bc46326 100644 --- a/src/Fable.Cli/Fable.Cli.fsproj +++ b/src/Fable.Cli/Fable.Cli.fsproj @@ -4,7 +4,7 @@ true Exe net6.0 - 4.2.1 + 4.2.2 * Fix #3438: Source maps * Fix #3440: Don't curry arity-1 functions * Fix #3452: DateTimeOffset conversion to DateTime diff --git a/src/Fable.Transforms/Global/Compiler.fs b/src/Fable.Transforms/Global/Compiler.fs index 4cb2d0db4e..6968e749a0 100644 --- a/src/Fable.Transforms/Global/Compiler.fs +++ b/src/Fable.Transforms/Global/Compiler.fs @@ -1,7 +1,7 @@ namespace Fable module Literals = - let [] VERSION = "4.2.1" + let [] VERSION = "4.2.2" let [] JS_LIBRARY_VERSION = "1.1.1" type CompilerOptionsHelper =