Skip to content

Commit

Permalink
Release 4.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro committed Apr 8, 2023
1 parent 8b37459 commit b692fa6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
14 changes: 6 additions & 8 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<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>
<Version>4.0.5</Version>
<PackageVersion>4.0.5</PackageVersion>
<PackageReleaseNotes>* Use native JS BigInt for int64/uint64
* Fix #3402: Rust type mismatch error when compiling F# closure code
* Improve optional field and argument typing in TypeScript
* Fix fable-library-ts when used with Vite</PackageReleaseNotes>
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
<RollForward>Major</RollForward>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
Expand Down
7 changes: 7 additions & 0 deletions src/Fable.Cli/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### 4.0.5

* Use native JS BigInt for int64/uint64
* Fix #3402: Rust type mismatch error when compiling F# closure code
* Improve optional field and argument typing in TypeScript
* Fix fable-library-ts when used with Vite

### 4.0.4

* Fix #3397: Curry only user imports
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 = "4.0.4"
let [<Literal>] VERSION = "4.0.5"

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

0 comments on commit b692fa6

Please sign in to comment.