diff --git a/src/Fable.Cli/Fable.Cli.fsproj b/src/Fable.Cli/Fable.Cli.fsproj index 469f03597a..3e6baaac96 100644 --- a/src/Fable.Cli/Fable.Cli.fsproj +++ b/src/Fable.Cli/Fable.Cli.fsproj @@ -3,13 +3,13 @@ Exe net5.0 - 3.3.0 - 3.3.0 - * JS.Decorator/ReflectedDecorator attributes -* Fix isSubclassOf to walk up the inheritance chain @chkn -* Fix #2520: Uri.OriginalString @njlr -* Fix #2532: Measure products -* Optimize interpolate strings without formatting into JS templates + 3.3.1 + 3.3.1 + * Fix #2097: Async.StartChild does not apply timeout @njlr +* Fix #2530: System.Collections.Generic.Stack @njlr +* Fix #2548: Assigning to value of unit type +* Fix #2549: Native ESM support +* Serialize compiler_info as JSON Major true diff --git a/src/Fable.Cli/RELEASE_NOTES.md b/src/Fable.Cli/RELEASE_NOTES.md index 8008228251..d8ff5145dc 100644 --- a/src/Fable.Cli/RELEASE_NOTES.md +++ b/src/Fable.Cli/RELEASE_NOTES.md @@ -1,3 +1,11 @@ +### 3.3.1 + +* Fix #2097: Async.StartChild does not apply timeout @njlr +* Fix #2530: System.Collections.Generic.Stack @njlr +* Fix #2548: Assigning to value of unit type +* Fix #2549: Native ESM support +* Serialize compiler_info as JSON + ### 3.3.0 * JS.Decorator/ReflectedDecorator attributes diff --git a/src/Fable.Transforms/Global/Compiler.fs b/src/Fable.Transforms/Global/Compiler.fs index 98e9e88cf9..a67ddba542 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 = "3.3.0" + let [] VERSION = "3.3.1" type CompilerOptionsHelper = static member DefaultExtension = ".fs.js"