Skip to content

Commit

Permalink
Release 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro committed Oct 1, 2021
1 parent 4362b08 commit d323f72
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 10 deletions.
14 changes: 7 additions & 7 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Version>3.3.1</Version>
<PackageVersion>3.3.1</PackageVersion>
<PackageReleaseNotes>* 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</PackageReleaseNotes>
<Version>3.4.0</Version>
<PackageVersion>3.4.0</PackageVersion>
<PackageReleaseNotes>* 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</PackageReleaseNotes>
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
<RollForward>Major</RollForward>
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
Expand Down
8 changes: 8 additions & 0 deletions src/Fable.Cli/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/Fable.Core/Fable.Core.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<Description>Fable Core Library</Description>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>3.3.1</Version>
<PackageVersion>3.3.1</PackageVersion>
<Version>3.4.0</Version>
<PackageVersion>3.4.0</PackageVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
Expand Down
4 changes: 4 additions & 0 deletions src/Fable.Core/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 3.4.0

* ParamObject attribute

### 3.3.1

* JS.Decorator/ReflectedDecorator attributes
Expand Down
2 changes: 1 addition & 1 deletion src/Fable.Transforms/Global/Compiler.fs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace Fable

module Literals =
let [<Literal>] VERSION = "3.3.1"
let [<Literal>] VERSION = "3.4.0"

type CompilerOptionsHelper =
static member DefaultExtension = ".fs.js"
Expand Down

0 comments on commit d323f72

Please sign in to comment.