Skip to content

Commit b0e6407

Browse files
committed
Release 5.0.0-alpha.9
1 parent af377c5 commit b0e6407

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

src/Fable.Cli/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 5.0.0-alpha.9 - 2025-01-28
11+
12+
### Fixed
13+
14+
* [All] Add `--realsig+` to fix `Method not found: 'Boolean Fable.CompilerOptions.Equals` (by @nojaf)
15+
1016
## 5.0.0-alpha.8 - 2025-01-27
1117

1218
### Added

src/Fable.Cli/Fable.Cli.fsproj

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,10 @@
44
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
55
<OutputType>Exe</OutputType>
66
<TargetFramework>net8.0</TargetFramework>
7-
<Version>5.0.0-alpha.8</Version>
8-
<PackageReleaseNotes>## Added
7+
<Version>5.0.0-alpha.9</Version>
8+
<PackageReleaseNotes>## Fixed
99

10-
- [TS] Include XML Doc comment on interface properties (by @Freymaurer)
11-
- [TS] Generate `interface` type when using the "ParamObject" class pattern (by @MangelMaxime)
12-
- [Rust] - Initial support for null values (by @ncave)
10+
- [All] Add `--realsig+` to fix `Method not found: 'Boolean Fable.CompilerOptions.Equals` (by @nojaf)
1311

1412
</PackageReleaseNotes>
1513
<!-- 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+
## 5.0.0-alpha.9 - 2025-01-28
11+
1012
### Fixed
1113

1214
* [All] Add `--realsig+` to fix `Method not found: 'Boolean Fable.CompilerOptions.Equals` (by @nojaf)

src/Fable.Compiler/Fable.Compiler.fsproj

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
77
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
88
<RootNamespace>Fable.Compiler</RootNamespace>
9-
<Version>5.0.0-alpha.8</Version>
10-
<PackageReleaseNotes>## Added
9+
<Version>5.0.0-alpha.9</Version>
10+
<PackageReleaseNotes>## Fixed
1111

12-
- [TS] Include XML Doc comment on interface properties (by @Freymaurer)
13-
- [TS] Generate `interface` type when using the "ParamObject" class pattern (by @MangelMaxime)
14-
- [Rust] - Initial support for null values (by @ncave)
12+
- [All] Add `--realsig+` to fix `Method not found: 'Boolean Fable.CompilerOptions.Equals` (by @nojaf)
1513

1614
</PackageReleaseNotes>
1715
<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 = "5.0.0-alpha.8"
5+
let VERSION = "5.0.0-alpha.9"
66

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

0 commit comments

Comments
 (0)