Skip to content

Commit

Permalink
Release 5.0.0-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MangelMaxime committed Nov 26, 2024
1 parent a97e712 commit 6498a3d
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 27 deletions.
14 changes: 10 additions & 4 deletions src/Fable.Cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

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

### Fixed

* [All] Allow Fable 5 to be used with Fable 4 plugins (@ncave)

## 5.0.0-alpha.1 - 2024-11-24

### Added

* [All] Add `--legacyCracker` as a fallback
* [All] Add `--legacyCracker` as a fallback (@MangelMaxime)

### Changed

* [All] Make MSBuildCracker the default
* [All] Replace `FABLE_COMPILER_4` with `FABLE_COMPILER_5` as the compiler directive
* [All] Move TargetFramework to `net8.0`
* [All] Make MSBuildCracker the default (@MangelMaxime)
* [All] Replace `FABLE_COMPILER_4` with `FABLE_COMPILER_5` as the compiler directive (@MangelMaxime)
* [All] Move TargetFramework to `net8.0` (@ncave)

## 4.24.0 - 2024-11-19

Expand Down
12 changes: 3 additions & 9 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,10 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Version>5.0.0-alpha.1</Version>
<PackageReleaseNotes>## Added
<Version>5.0.0-alpha.2</Version>
<PackageReleaseNotes>## Fixed

- [All] Add `--legacyCracker` as a fallback

## Changed

- [All] Make MSBuildCracker the default
- [All] Replace `FABLE_COMPILER_4` with `FABLE_COMPILER_5` as the compiler directive
- [All] Move TargetFramework to `net8.0`
- [All] Allow Fable 5 to be used with Fable 4 plugins (@ncave)

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

## Unreleased

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

### Fixed

* [All] Allow Fable 5 to be used with Fable 4 plugins (@ncave)

## 5.0.0-alpha.1 - 2024-11-24

### Added

* [All] Add `--legacyCracker` as a fallback
* [All] Add `--legacyCracker` as a fallback (@MangelMaxime)

### Changed

* [All] Make MSBuildCracker the default
* [All] Replace `FABLE_COMPILER_4` with `FABLE_COMPILER_5` as the compiler directive
* [All] Move TargetFramework to `net8.0`
* [All] Make MSBuildCracker the default (@MangelMaxime)
* [All] Replace `FABLE_COMPILER_4` with `FABLE_COMPILER_5` as the compiler directive (@MangelMaxime)
* [All] Move TargetFramework to `net8.0` (@ncave)

## 4.0.0-alpha-016 - 2024-11-19

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

- [All] Add `--legacyCracker` as a fallback

## Changed

- [All] Make MSBuildCracker the default
- [All] Replace `FABLE_COMPILER_4` with `FABLE_COMPILER_5` as the compiler directive
- [All] Move TargetFramework to `net8.0`
- [All] Allow Fable 5 to be used with Fable 4 plugins (@ncave)

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

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

0 comments on commit 6498a3d

Please sign in to comment.