diff --git a/src/Fable.Cli/Fable.Cli.fsproj b/src/Fable.Cli/Fable.Cli.fsproj index 3e6baaac96..e71ab30fea 100644 --- a/src/Fable.Cli/Fable.Cli.fsproj +++ b/src/Fable.Cli/Fable.Cli.fsproj @@ -3,13 +3,13 @@ Exe net5.0 - 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 + 3.4.0 + 3.4.0 + * ParamObject attribute +* Rename .fable folder to fable_modules +* Print log about Femto +* Add Type.IsInstanceOfType @chkn +* Fix #2229: Parsing succeeded for some invalid dates @njlr Major true diff --git a/src/Fable.Cli/RELEASE_NOTES.md b/src/Fable.Cli/RELEASE_NOTES.md index d8ff5145dc..ece91e142c 100644 --- a/src/Fable.Cli/RELEASE_NOTES.md +++ b/src/Fable.Cli/RELEASE_NOTES.md @@ -1,3 +1,11 @@ +### 3.4.0 + +* ParamObject attribute +* Rename .fable folder to fable_modules +* Print log about Femto +* Add Type.IsInstanceOfType @chkn +* Fix #2229: Parsing succeeded for some invalid dates @njlr + ### 3.3.1 * Fix #2097: Async.StartChild does not apply timeout @njlr diff --git a/src/Fable.Core/Fable.Core.fsproj b/src/Fable.Core/Fable.Core.fsproj index 0f51d3c453..ceaeeb3779 100644 --- a/src/Fable.Core/Fable.Core.fsproj +++ b/src/Fable.Core/Fable.Core.fsproj @@ -4,8 +4,8 @@ Fable Core Library netstandard2.0 true - 3.3.1 - 3.3.1 + 3.4.0 + 3.4.0 diff --git a/src/Fable.Core/RELEASE_NOTES.md b/src/Fable.Core/RELEASE_NOTES.md index 40e4f35abe..0e6d2b980e 100644 --- a/src/Fable.Core/RELEASE_NOTES.md +++ b/src/Fable.Core/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +### 3.4.0 + +* ParamObject attribute + ### 3.3.1 * JS.Decorator/ReflectedDecorator attributes diff --git a/src/Fable.Transforms/Global/Compiler.fs b/src/Fable.Transforms/Global/Compiler.fs index a67ddba542..3dac5df3b4 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.1" + let [] VERSION = "3.4.0" type CompilerOptionsHelper = static member DefaultExtension = ".fs.js"