File tree Expand file tree Collapse file tree 9 files changed +29
-13
lines changed
Expand file tree Collapse file tree 9 files changed +29
-13
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## Unreleased
99
10+ ## 4.21.0 - 2024-09-19
11+
1012### Added
1113
1214* [ JS/TS] Add support for ` OrdinalIgnoreCase ` overload for ` String.EndsWith ` (#3892 ) (by @goswinr )
Original file line number Diff line number Diff line change 44 <DisableImplicitFSharpCoreReference >true</DisableImplicitFSharpCoreReference >
55 <OutputType >Exe</OutputType >
66 <TargetFramework >net6.0</TargetFramework >
7- <Version >4.20 .0</Version >
7+ <Version >4.21 .0</Version >
88 <PackageReleaseNotes >## Added
99
10- - [Rust] Added support for static interface calls (by @ncave)
10+ - [JS/TS] Add support for `OrdinalIgnoreCase` overload for `String.EndsWith` (#3892) (by @goswinr)
11+ - [JS/TS] Add `uri.Port`, `uri.IsDefaultPort` (by @MangelMaxime)
12+
13+ ## Changed
14+
15+ - [Python] Remove `$` sign when reporting an error from `assert_equal` and `assert_not_equal` (#3878) (by @joprice)
16+ - [All] Don't hide original error when failing to scan an assembly for plugin (#3896) (by @MangelMaxime)
1117
1218## Fixed
1319
14- - [All] Fixed passing delegates with unit args (#3862 ) (by @ncave )
15- - [JS/TS] Fixed Decimal comparisons (#3884) (by @ncave )
16- - [Rust] Fixed return type for byref body (by @ncave )
20+ - [JS/TS] Fix escaping of `{` and `}` in FormattableString (#3890 ) (by @roboz0r )
21+ - [JS/TS] Fix `uri.Host` to return the host name without the port (by @MangelMaxime )
22+ - [JS/TS] Fix TypeScript compilation by resolving type of `jsOptions` (#3894) (by @ManngelMaxime )
1723
1824</PackageReleaseNotes >
1925 <!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## Unreleased
99
10+ ## 4.0.0-alpha-013 - 2024-09-19
11+
1012### Changed
1113
1214* [ All] Don't hide original error when failing to scan an assembly for plugin (#3896 ) (by @MangelMaxime )
Original file line number Diff line number Diff line change 66 <DisableImplicitFSharpCoreReference >true</DisableImplicitFSharpCoreReference >
77 <CopyLocalLockFileAssemblies >true</CopyLocalLockFileAssemblies >
88 <RootNamespace >Fable.Compiler</RootNamespace >
9- <Version >4.0.0-alpha-012 </Version >
10- <PackageReleaseNotes >## Fixed
9+ <Version >4.0.0-alpha-013 </Version >
10+ <PackageReleaseNotes >## Changed
1111
12- - [JS/TS] Fixed unwrapping optional arguments (#3847 ) (by @ncave )
12+ - [All] Don't hide original error when failing to scan an assembly for plugin (#3896 ) (by @MangelMaxime )
1313
1414</PackageReleaseNotes >
1515 <DebugType >embedded</DebugType >
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ namespace Fable
22
33module Literals =
44 [<Literal>]
5- let VERSION = " 4.20 .0"
5+ let VERSION = " 4.21 .0"
66
77 [<Literal>]
8- let JS_LIBRARY_VERSION = " 1.4.3 "
8+ let JS_LIBRARY_VERSION = " 1.5.0 "
99
1010type CompilerOptionsHelper =
1111 static member Make
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## Unreleased
99
10+ ## 1.5.0 - 2024-09-19
11+
1012### Added
1113
1214* [ JS/TS] Add support for ` OrdinalIgnoreCase ` overload for ` String.EndsWith ` (#3892 ) (by @goswinr )
Original file line number Diff line number Diff line change 33 "private" : false ,
44 "type" : " module" ,
55 "name" : " @fable-org/fable-library-ts" ,
6- "version" : " 1.4.3 " ,
6+ "version" : " 1.5.0 " ,
77 "description" : " Core library used by F# projects compiled with fable.io" ,
88 "author" : " Fable Contributors" ,
99 "license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## Unreleased
99
10+ ## 1.9.0 - 2024-09-19
11+
12+ * Fable 4.21.0
13+
1014## 1.9.0 - 2024-09-04
1115
1216* Fable 4.20.0
You can’t perform that action at this time.
0 commit comments