Skip to content

Commit

Permalink
Release 4.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro committed Mar 27, 2023
1 parent 459a7ce commit e45b25a
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Fable.Cli/Contributors.fs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ let getRandom() =
"chkn"; "MNie"; "Choc13";
"davedawkins"; "njlr"; "steveofficer";
"cannorin"; "thautwarm"; "hensou";
"IanManske"; "entropitor";
"IanManske"; "entropitor"; "kant2002"
|]
Array.length contributors
|> System.Random().Next
Expand Down
13 changes: 7 additions & 6 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>4.0.1</Version>
<PackageVersion>4.0.1</PackageVersion>
<PackageReleaseNotes>* Fix #3371: Copying struct records
* Php: Improve output @entropitor
* Rust: string improvements
* TypeScript: Fix applicative tests</PackageReleaseNotes>
<Version>4.0.2</Version>
<PackageVersion>4.0.2</PackageVersion>
<PackageReleaseNotes>* Enable Unicode identifiers @kant2002
* Add ability for plugins to remove member declaration @Zaid-Ajaj
* Improve uncurrying mechanism and make it consistent across languages
* Rust: Enable applicative tests and other fixes
* TypeScript: Enable 1909 tests</PackageReleaseNotes>
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
<RollForward>Major</RollForward>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
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 @@
### 4.0.2

* Enable Unicode identifiers @kant2002
* Add ability for plugins to remove member declaration @Zaid-Ajaj
* Improve uncurrying mechanism and make it consistent across languages
* Rust: Enable applicative tests and other fixes
* TypeScript: Enable 1909 tests

### 4.0.1

* Fix #3371: Copying struct records
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.1"
let [<Literal>] VERSION = "4.0.2"

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

0 comments on commit e45b25a

Please sign in to comment.