Skip to content

Commit 0d0ed6d

Browse files
committed
Release 4.26.0
1 parent 95c45dc commit 0d0ed6d

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
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.26.0 - 2025-07-14
11+
1012
### Changed
1113

1214
* [All] Fix #4176: Move TargetFramework to net8.0 (@ncave)

src/Fable.Cli/Fable.Cli.fsproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
55
<OutputType>Exe</OutputType>
66
<TargetFramework>net8.0</TargetFramework>
7-
<Version>4.25.0</Version>
8-
<PackageReleaseNotes>## Fixed
7+
<Version>4.26.0</Version>
8+
<PackageReleaseNotes>## Changed
99

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)
10+
- [All] Fix #4176: Move TargetFramework to net8.0 (@ncave)
1211

1312
</PackageReleaseNotes>
1413
<!-- 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-018 - 2025-07-14
11+
1012
### Changed
1113

1214
* [All] Fix #4176: Move TargetFramework to net8.0 (@ncave)

src/Fable.Compiler/Fable.Compiler.fsproj

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

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)
12+
- [All] Fix #4176: Move TargetFramework to net8.0 (@ncave)
1413

1514
</PackageReleaseNotes>
1615
<DebugType>embedded</DebugType>

src/Fable.Transforms/Global/Compiler.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace Fable
22

33
module Literals =
44
[<Literal>]
5-
let VERSION = "4.25.0"
5+
let VERSION = "4.26.0"
66

77
[<Literal>]
88
let JS_LIBRARY_VERSION = "1.11.0"

0 commit comments

Comments
 (0)