Skip to content

Commit

Permalink
Release 4.0.0-theta-009
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro committed Sep 28, 2022
1 parent 13308f2 commit ce39614
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 9 deletions.
13 changes: 6 additions & 7 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>4.0.0</Version>
<PackageVersion>4.0.0-theta-008</PackageVersion>
<PackageReleaseNotes>* Enable emitExpr/Statement with interpolation, @alfonsogarciacaro
* Python, fix imported interfaces from other modules, @dbrattli
* Python, allow python code embedder to return generic type T
* Python, enable eliding async/await, @dbrattli
* TypeScript, added library-ts to packages, @ncave
* Python, do not trim emitted statements</PackageReleaseNotes>
<PackageVersion>4.0.0-theta-009</PackageVersion>
<PackageReleaseNotes>* Add language status to version
* Make --runScript compatible with Python, Rust and Dart
* Update F# compiler
* Compile as net6 binary
* TypeScript, type-safe union types and other fixes</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.0-theta-009

* Add language status to version
* Make --runScript compatible with Python, Rust and Dart
* Update F# compiler
* Compile as net6 binary
* TypeScript, type-safe union types and other fixes

### 4.0.0-theta-008

* Enable emitExpr/Statement with interpolation, @alfonsogarciacaro
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-003</PackageVersion>
<PackageVersion>4.0.0-theta-004</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-004

* Add ??= operator to JsInterop

### 4.0.0-theta-003

* Python fixes for Interactive
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-008"
let [<Literal>] VERSION = "4.0.0-theta-009"

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

0 comments on commit ce39614

Please sign in to comment.