Skip to content

Commit

Permalink
Release 5.0.0-alpha.9
Browse files Browse the repository at this point in the history
  • Loading branch information
MangelMaxime committed Jan 28, 2025
1 parent af377c5 commit b0e6407
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
6 changes: 6 additions & 0 deletions src/Fable.Cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 3 additions & 5 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Version>5.0.0-alpha.8</Version>
<PackageReleaseNotes>## Added
<Version>5.0.0-alpha.9</Version>
<PackageReleaseNotes>## 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)

</PackageReleaseNotes>
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
Expand Down
2 changes: 2 additions & 0 deletions src/Fable.Compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
8 changes: 3 additions & 5 deletions src/Fable.Compiler/Fable.Compiler.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RootNamespace>Fable.Compiler</RootNamespace>
<Version>5.0.0-alpha.8</Version>
<PackageReleaseNotes>## Added
<Version>5.0.0-alpha.9</Version>
<PackageReleaseNotes>## 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)

</PackageReleaseNotes>
<DebugType>embedded</DebugType>
Expand Down
2 changes: 1 addition & 1 deletion src/Fable.Transforms/Global/Compiler.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Fable

module Literals =
[<Literal>]
let VERSION = "5.0.0-alpha.8"
let VERSION = "5.0.0-alpha.9"

[<Literal>]
let JS_LIBRARY_VERSION = "1.10.0"
Expand Down

0 comments on commit b0e6407

Please sign in to comment.