Skip to content

Commit 3cf88d7

Browse files
committed
Release 4.25.0
1 parent a0f3d58 commit 3cf88d7

File tree

8 files changed

+19
-21
lines changed

8 files changed

+19
-21
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.25.0 - 2025-04-26
11+
1012
### Fixed
1113

1214
* [JS/TS] Propagate non-captured exception when running `Async.Start` or `Async.StartImmediate` (by @MangelMaxime)

src/Fable.Cli/Fable.Cli.fsproj

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,11 @@
44
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
55
<OutputType>Exe</OutputType>
66
<TargetFramework>net6.0</TargetFramework>
7-
<Version>4.24.0</Version>
8-
<PackageReleaseNotes>## Added
7+
<Version>4.25.0</Version>
8+
<PackageReleaseNotes>## Fixed
99

10-
- [JS/TS] Added missing `ResizeArray.CopyTo` replacements (by @ncave)
11-
- [JS/TS] Added missing `Dictionary` constructors from enumerable (by @ncave)
12-
13-
## Fixed
14-
15-
- [Rust] Fixed import path rewrite (by @ncave)
16-
- [Rust] Updated derived interfaces (by @ncave)
17-
- [Rust] Updated string comparisons (by @ncave)
18-
- [Rust] Fixed derived traits mapping (by @ncave)
19-
- [JS/TS] Added missing `ICollection` helpers (#3914) (by @ncave)
20-
- [JS/TS] Added missing `IReadOnlyCollection` helpers (by @ncave)
10+
- [JS/TS] Propagate non-captured exception when running `Async.Start` or `Async.StartImmediate` (by @MangelMaxime)
11+
- [JS/TS] Report an error at compilation time when trying to use `Async.RunSynchronously` (by @MangelMaxime)
2112

2213
</PackageReleaseNotes>
2314
<!-- 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-017 - 2025-04-26
11+
1012
### Fixed
1113

1214
* [JS/TS] Propagate non-captured exception when running `Async.Start` or `Async.StartImmediate` (by @MangelMaxime)

src/Fable.Compiler/Fable.Compiler.fsproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
77
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
88
<RootNamespace>Fable.Compiler</RootNamespace>
9-
<Version>4.0.0-alpha-016</Version>
10-
<PackageReleaseNotes>## Changed
9+
<Version>4.0.0-alpha-017</Version>
10+
<PackageReleaseNotes>## Fixed
1111

12-
- Fable 4.24.0
12+
- [JS/TS] Propagate non-captured exception when running `Async.Start` or `Async.StartImmediate` (by @MangelMaxime)
13+
- [JS/TS] Report an error at compilation time when trying to use `Async.RunSynchronously` (by @MangelMaxime)
1314

1415
</PackageReleaseNotes>
1516
<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.24.0"
5+
let VERSION = "4.25.0"
66

77
[<Literal>]
8-
let JS_LIBRARY_VERSION = "1.7.0"
8+
let JS_LIBRARY_VERSION = "1.11.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.11.0- 2025-04-26
11+
1012
### Fixed
1113

1214
* [JS/TS] Propagate non-captured exception when running `Async.Start` or `Async.StartImmediate` (by @MangelMaxime)

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.7.0",
6+
"version": "1.11.0",
77
"description": "Core library used by F# projects compiled with fable.io",
88
"author": "Fable Contributors",
99
"license": "MIT",

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)