Skip to content

Commit

Permalink
Release 4.0.0-theta-011
Browse files Browse the repository at this point in the history
  • Loading branch information
alfonsogarciacaro committed Oct 4, 2022
1 parent d008bf8 commit cfe002b
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 4 deletions.
8 changes: 6 additions & 2 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>4.0.0</Version>
<PackageVersion>4.0.0-theta-010</PackageVersion>
<PackageReleaseNotes>* Use StringTemplate expr in Fable AST for Python</PackageReleaseNotes>
<PackageVersion>4.0.0-theta-011</PackageVersion>
<PackageReleaseNotes>* Python, add read/write files
* Python, fix URI and number types
* JS, allow imports in emit expressions and JSX
* JS, improve import path resolution (interpolation, inlined functions)
* TypeScript, fix arithmetic 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.0-theta-011

* Python, add read/write files
* Python, fix URI and number types
* JS, allow imports in emit expressions and JSX
* JS, improve import path resolution (interpolation, inlined functions)
* TypeScript, fix arithmetic tests

### 4.0.0-theta-010

* Use StringTemplate expr in Fable AST for Python
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-004</PackageVersion>
<PackageVersion>4.0.0-theta-005</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-005

* Add JSX.jsx function

### 4.0.0-theta-004

* Add ??= operator to JsInterop
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-010"
let [<Literal>] VERSION = "4.0.0-theta-011"

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

0 comments on commit cfe002b

Please sign in to comment.