Skip to content

Commit

Permalink
Release 4.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro committed Apr 4, 2023
1 parent 216d3d1 commit 2cf7431
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
13 changes: 8 additions & 5 deletions src/Fable.Cli/Fable.Cli.fsproj
Expand Up @@ -4,11 +4,14 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>4.0.3</Version>
<PackageVersion>4.0.3</PackageVersion>
<PackageReleaseNotes>* Fix #3389: Don't wrap TemplateStringArray
* Rust: Fix recursive closures and some type tests,
* TypeScript: Emit interfaces and anonymous record annotations</PackageReleaseNotes>
<Version>4.0.4</Version>
<PackageVersion>4.0.4</PackageVersion>
<PackageReleaseNotes>* Fix #3397: Curry only user imports
* Fix: Compiler Exception when `!!`, Anon Record, and aliased `Ux` (also behind option) @Booksbaum
* Use native bigint type @ncave
* Emit Fable erased unions as TS union types
* Optimize compile time equality and testing (union, list, options)
* TypeScript: enable Comparison, Convert and Event tests</PackageReleaseNotes>
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
<RollForward>Major</RollForward>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
Expand Down
9 changes: 9 additions & 0 deletions src/Fable.Cli/RELEASE_NOTES.md
@@ -1,3 +1,12 @@
### 4.0.4

* Fix #3397: Curry only user imports
* Fix: Compiler Exception when `!!`, Anon Record, and aliased `Ux` (also behind option) @Booksbaum
* Use native bigint type @ncave
* Emit Fable erased unions as TS union types
* Optimize compile time equality and testing (union, list, options)
* TypeScript: enable Comparison, Convert and Event tests

### 4.0.3

* Fix #3389: Don't wrap TemplateStringArray
Expand Down
2 changes: 1 addition & 1 deletion src/Fable.Transforms/Global/Compiler.fs
@@ -1,7 +1,7 @@
namespace Fable

module Literals =
let [<Literal>] VERSION = "4.0.3"
let [<Literal>] VERSION = "4.0.4"

type CompilerOptionsHelper =
static member Make(?language,
Expand Down

0 comments on commit 2cf7431

Please sign in to comment.