Skip to content

Commit

Permalink
Release 5.0.0-alpha.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MangelMaxime committed Dec 18, 2024
1 parent 3a4bf49 commit 4e072b1
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
2 changes: 2 additions & 0 deletions src/Fable.Cli/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.3 - 2024-12-18

### Fixed

* [Python] Fix type testing against `uint8`, `uint32`, `uint64`, `decimal` (@MangelMaxime)
Expand Down
5 changes: 3 additions & 2 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Version>5.0.0-alpha.2</Version>
<Version>5.0.0-alpha.3</Version>
<PackageReleaseNotes>## Fixed

- [All] Allow Fable 5 to be used with Fable 4 plugins (@ncave)
- [Python] Fix type testing against `uint8`, `uint32`, `uint64`, `decimal` (@MangelMaxime)
- [JS/TS] Workaround source map generation bug (deteriorate them a little) (@MangelMaxime)

</PackageReleaseNotes>
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
Expand Down
7 changes: 7 additions & 0 deletions src/Fable.Compiler/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 5.0.0-alpha.3 - 2024-12-18

### Fixed

* [Python] Fix type testing against `uint8`, `uint32`, `uint64`, `decimal` (@MangelMaxime)
* [JS/TS] Workaround source map generation bug (deteriorate them a little) (@MangelMaxime)

## 5.0.0-alpha.2 - 2024-11-25

### Fixed
Expand Down
5 changes: 3 additions & 2 deletions src/Fable.Compiler/Fable.Compiler.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RootNamespace>Fable.Compiler</RootNamespace>
<Version>5.0.0-alpha.2</Version>
<Version>5.0.0-alpha.3</Version>
<PackageReleaseNotes>## Fixed

- [All] Allow Fable 5 to be used with Fable 4 plugins (@ncave)
- [Python] Fix type testing against `uint8`, `uint32`, `uint64`, `decimal` (@MangelMaxime)
- [JS/TS] Workaround source map generation bug (deteriorate them a little) (@MangelMaxime)

</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.2"
let VERSION = "5.0.0-alpha.3"

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

0 comments on commit 4e072b1

Please sign in to comment.