Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 4.0.0-theta-003 #3167

Merged
merged 1 commit into from
Sep 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Version>4.0.0</Version>
<PackageVersion>4.0.0-theta-002</PackageVersion>
<PackageReleaseNotes>- Rust, removed cloning after emit
- Python, make sure module names are valid
- Python, fix interface entity lookup
- Python, fixes for .ToArray and is_array_like
- Rust, fixed TimeSpan fields</PackageReleaseNotes>
<PackageVersion>4.0.0-theta-003</PackageVersion>
<PackageReleaseNotes>* Python, fix regression when building on Windows
* Rust, added Default for array, string, hashmap, hashset, guid</PackageReleaseNotes>
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
<RollForward>Major</RollForward>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
Expand Down
15 changes: 10 additions & 5 deletions src/Fable.Cli/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
### 4.0.0-theta-003

* Python, fix regression when building on Windows
* Rust, added Default for array, string, hashmap, hashset, guid

### 4.0.0-theta-002

- Rust, removed cloning after emit
- Python, make sure module names are valid
- Python, fix interface entity lookup
- Python, fixes for .ToArray and is_array_like
- Rust, fixed TimeSpan fields
* Rust, removed cloning after emit
* Python, make sure module names are valid
* Python, fix interface entity lookup
* Python, fixes for .ToArray and is_array_like
* Rust, fixed TimeSpan fields

### 4.0.0-theta-001

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-002"
let [<Literal>] VERSION = "4.0.0-theta-003"

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