diff --git a/src/Fable.Cli/CHANGELOG.md b/src/Fable.Cli/CHANGELOG.md index 1bedc7ea9..03afba56f 100644 --- a/src/Fable.Cli/CHANGELOG.md +++ b/src/Fable.Cli/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 5.0.0-alpha.9 - 2025-01-28 + +### Fixed + +* [All] Add `--realsig+` to fix `Method not found: 'Boolean Fable.CompilerOptions.Equals` (by @nojaf) + ## 5.0.0-alpha.8 - 2025-01-27 ### Added diff --git a/src/Fable.Cli/Fable.Cli.fsproj b/src/Fable.Cli/Fable.Cli.fsproj index 862133125..f1c3fc1cd 100644 --- a/src/Fable.Cli/Fable.Cli.fsproj +++ b/src/Fable.Cli/Fable.Cli.fsproj @@ -4,12 +4,10 @@ true Exe net8.0 - 5.0.0-alpha.8 - ## Added + 5.0.0-alpha.9 + ## Fixed -- [TS] Include XML Doc comment on interface properties (by @Freymaurer) -- [TS] Generate `interface` type when using the "ParamObject" class pattern (by @MangelMaxime) -- [Rust] - Initial support for null values (by @ncave) +- [All] Add `--realsig+` to fix `Method not found: 'Boolean Fable.CompilerOptions.Equals` (by @nojaf) diff --git a/src/Fable.Compiler/CHANGELOG.md b/src/Fable.Compiler/CHANGELOG.md index 54befe049..0d5286e86 100644 --- a/src/Fable.Compiler/CHANGELOG.md +++ b/src/Fable.Compiler/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 5.0.0-alpha.9 - 2025-01-28 + ### Fixed * [All] Add `--realsig+` to fix `Method not found: 'Boolean Fable.CompilerOptions.Equals` (by @nojaf) diff --git a/src/Fable.Compiler/Fable.Compiler.fsproj b/src/Fable.Compiler/Fable.Compiler.fsproj index a41b6e8ef..7a5d6848e 100644 --- a/src/Fable.Compiler/Fable.Compiler.fsproj +++ b/src/Fable.Compiler/Fable.Compiler.fsproj @@ -6,12 +6,10 @@ true true Fable.Compiler - 5.0.0-alpha.8 - ## Added + 5.0.0-alpha.9 + ## Fixed -- [TS] Include XML Doc comment on interface properties (by @Freymaurer) -- [TS] Generate `interface` type when using the "ParamObject" class pattern (by @MangelMaxime) -- [Rust] - Initial support for null values (by @ncave) +- [All] Add `--realsig+` to fix `Method not found: 'Boolean Fable.CompilerOptions.Equals` (by @nojaf) embedded diff --git a/src/Fable.Transforms/Global/Compiler.fs b/src/Fable.Transforms/Global/Compiler.fs index 8daed9247..fb70c3299 100644 --- a/src/Fable.Transforms/Global/Compiler.fs +++ b/src/Fable.Transforms/Global/Compiler.fs @@ -2,7 +2,7 @@ namespace Fable module Literals = [] - let VERSION = "5.0.0-alpha.8" + let VERSION = "5.0.0-alpha.9" [] let JS_LIBRARY_VERSION = "1.10.0"