Skip to content

Commit

Permalink
Release 4.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MangelMaxime committed Oct 28, 2024
1 parent dffde1a commit 6cfa6cc
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 19 deletions.
10 changes: 6 additions & 4 deletions src/Fable.Cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 4.23.0 - 2024-10-28

### Added

* [Rust] Added basic class inheritance support (by @ncave)
* [Rust] Added String.Replace(char, char) and test (by @ncave)
* [Rust] Added `String.Replace(char, char)` and test (by @ncave)
* [Rust] Support type extensions for external types (by @ncave)
* [Rust] Support more System.Array methods and tests (by @ncave)
* [Rust] Support more `System.Array` methods and tests (by @ncave)
* [Rust] Added decision tree multiple target references (by @ncave)
* [Rust] Added Char surrogate tests for completeness (by @ncave)
* [JS] Add `System.String.Normalize` support (by @DashieTM)
Expand All @@ -23,8 +25,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* [Rust] Updated derived traits mapping (by @ncave)
* [Rust] Updated some collections equality (by @ncave)
* [Rust] Fixed try finally handler order of execution (by @ncave)
* [JS/TS/Python/Rust] Fixed String.StartsWith/EndsWith (#3934) (by @ncave)
* [All/Rust] Removed Regex.Replace from hot paths (by @ncave)
* [JS/TS/Python/Rust] Fixed `String.StartsWith/EndsWith` (#3934) (by @ncave)
* [All/Rust] Removed `Regex.Replace` from hot paths (by @ncave)
* [JS] Fix regression, generate `let` variable when using `import` on a private mutable variable (by @MangelMaxime)
* [TS] Prevent generics to be duplicated (by @MangelMaxime)
* [TS] Fix interface generation when decorated with `Mangle` (by @MangelMaxime)
Expand Down
27 changes: 17 additions & 10 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,28 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>4.22.0</Version>
<Version>4.23.0</Version>
<PackageReleaseNotes>## Added

- [Rust] Added support for Dictionary/HashSet comparers (by @ncave)
- [Rust] Updated support for interface object expressions (by @ncave)
- [Rust] Added missing ResizeArray methods and tests (by @ncave)
- [Rust] Added Async.Sleep and test (by @ncave)
- [Rust] Added basic class inheritance support (by @ncave)
- [Rust] Added `String.Replace(char, char)` and test (by @ncave)
- [Rust] Support type extensions for external types (by @ncave)
- [Rust] Support more `System.Array` methods and tests (by @ncave)
- [Rust] Added decision tree multiple target references (by @ncave)
- [Rust] Added Char surrogate tests for completeness (by @ncave)
- [JS] Add `System.String.Normalize` support (by @DashieTM)
- [JS] Allow `[&lt;Erase&gt;]` to work on members (by @MangelMaxime)

## Fixed

- [GH-3900](https://github.com/fable-compiler/Fable/pull/3900) [Python] Fix nuget packages with hypens in their names (by @MangelMaxime)
- [Rust] Uncurry field types for object expressions (by @ncave)
- [Rust] Fixed pattern matching on `this` argument (by @ncave)
- [All] Fixed Missing DU member with interface (#3915) (by @ncave)
- [TS] Fixed missing Async type signature (#3864) (by @MangelMaxime)
- [Rust] Updated derived traits mapping (by @ncave)
- [Rust] Updated some collections equality (by @ncave)
- [Rust] Fixed try finally handler order of execution (by @ncave)
- [JS/TS/Python/Rust] Fixed `String.StartsWith/EndsWith` (#3934) (by @ncave)
- [All/Rust] Removed `Regex.Replace` from hot paths (by @ncave)
- [JS] Fix regression, generate `let` variable when using `import` on a private mutable variable (by @MangelMaxime)
- [TS] Prevent generics to be duplicated (by @MangelMaxime)
- [TS] Fix interface generation when decorated with `Mangle` (by @MangelMaxime)

</PackageReleaseNotes>
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
Expand Down
6 changes: 6 additions & 0 deletions src/Fable.Compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 4.0.0-alpha-015 - 2024-10-28

### Changed

* Fable 4.23.0

## 4.0.0-alpha-014 - 2024-10-02

### Changed
Expand Down
4 changes: 2 additions & 2 deletions src/Fable.Compiler/Fable.Compiler.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RootNamespace>Fable.Compiler</RootNamespace>
<Version>4.0.0-alpha-014</Version>
<Version>4.0.0-alpha-015</Version>
<PackageReleaseNotes>## Changed

- Fable 4.22.0
- Fable 4.23.0

</PackageReleaseNotes>
<DebugType>embedded</DebugType>
Expand Down
2 changes: 1 addition & 1 deletion src/Fable.Transforms/Global/Compiler.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Fable

module Literals =
[<Literal>]
let VERSION = "4.22.0"
let VERSION = "4.23.0"

[<Literal>]
let JS_LIBRARY_VERSION = "1.6.0"
Expand Down
4 changes: 4 additions & 0 deletions src/fable-standalone/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 1.10.0 - 2024-10-28

* Fable 4.23.0

## 1.10.0 - 2024-10-02

* Fable 4.22.0
Expand Down
4 changes: 2 additions & 2 deletions src/fable-standalone/package-lock.json

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

0 comments on commit 6cfa6cc

Please sign in to comment.