Skip to content

Commit

Permalink
Release 4.0.0-theta-016
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro committed Nov 12, 2022
1 parent 1ba1601 commit 7a93213
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
8 changes: 3 additions & 5 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>4.0.0</Version>
<PackageVersion>4.0.0-theta-015</PackageVersion>
<PackageReleaseNotes>* JS, enable calls with `importValueDynamic`
* JS, Support System.Delegate.DynamicInvoke
* Rust, Added feature for func_type_enum
* Rust, Added Func type wrappers (#3250)</PackageReleaseNotes>
<PackageVersion>4.0.0-theta-016</PackageVersion>
<PackageReleaseNotes>* Attempt to improve project parsing
* Added Double.Pow static</PackageReleaseNotes>
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
<RollForward>Major</RollForward>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
Expand Down
5 changes: 5 additions & 0 deletions src/Fable.Cli/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 4.0.0-theta-016

* Attempt to improve project parsing
* Added Double.Pow static

### 4.0.0-theta-015

* JS, enable calls with `importValueDynamic`
Expand Down
2 changes: 1 addition & 1 deletion src/Fable.Core/Fable.Core.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>4.0.0</Version>
<PackageVersion>4.0.0-theta-006</PackageVersion>
<PackageVersion>4.0.0-theta-007</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 @@
### 4.0.0-theta-007

*Fix #3249 by enabling uncurrying for functions with multiple parameters @inosik

### 4.0.0-theta-006

* Python fixes for decorator attribute
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.0-theta-015"
let [<Literal>] VERSION = "4.0.0-theta-016"

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

0 comments on commit 7a93213

Please sign in to comment.