Skip to content

Commit 6089f30

Browse files
author
Maxime Mangel
committed
Release 4.21.0
1 parent b93f248 commit 6089f30

File tree

9 files changed

+29
-13
lines changed

9 files changed

+29
-13
lines changed

src/Fable.Cli/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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)

src/Fable.Cli/Fable.Cli.fsproj

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,22 @@
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 -->

src/Fable.Compiler/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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)

src/Fable.Compiler/Fable.Compiler.fsproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
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>

src/Fable.Transforms/Global/Compiler.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ namespace Fable
22

33
module 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

1010
type CompilerOptionsHelper =
1111
static member Make

src/fable-library-ts/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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)

src/fable-library-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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",

src/fable-standalone/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

src/fable-standalone/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)