From 6498a3da20a3ccdeaf2b20baeb6ca50fa213a180 Mon Sep 17 00:00:00 2001 From: Maxime Mangel Date: Tue, 26 Nov 2024 20:03:37 +0000 Subject: [PATCH] Release 5.0.0-alpha.2 --- src/Fable.Cli/CHANGELOG.md | 14 ++++++++++---- src/Fable.Cli/Fable.Cli.fsproj | 12 +++--------- src/Fable.Compiler/CHANGELOG.md | 14 ++++++++++---- src/Fable.Compiler/Fable.Compiler.fsproj | 12 +++--------- src/Fable.Transforms/Global/Compiler.fs | 2 +- 5 files changed, 27 insertions(+), 27 deletions(-) diff --git a/src/Fable.Cli/CHANGELOG.md b/src/Fable.Cli/CHANGELOG.md index 4f7d2f057..4e8a82725 100644 --- a/src/Fable.Cli/CHANGELOG.md +++ b/src/Fable.Cli/CHANGELOG.md @@ -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 diff --git a/src/Fable.Cli/Fable.Cli.fsproj b/src/Fable.Cli/Fable.Cli.fsproj index 9c1bc2133..5b0467422 100644 --- a/src/Fable.Cli/Fable.Cli.fsproj +++ b/src/Fable.Cli/Fable.Cli.fsproj @@ -4,16 +4,10 @@ true Exe net8.0 - 5.0.0-alpha.1 - ## Added + 5.0.0-alpha.2 + ## 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) diff --git a/src/Fable.Compiler/CHANGELOG.md b/src/Fable.Compiler/CHANGELOG.md index 66bfe68a3..2d73446e0 100644 --- a/src/Fable.Compiler/CHANGELOG.md +++ b/src/Fable.Compiler/CHANGELOG.md @@ -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 diff --git a/src/Fable.Compiler/Fable.Compiler.fsproj b/src/Fable.Compiler/Fable.Compiler.fsproj index e8d9f60a0..99b6e30c9 100644 --- a/src/Fable.Compiler/Fable.Compiler.fsproj +++ b/src/Fable.Compiler/Fable.Compiler.fsproj @@ -6,16 +6,10 @@ true true Fable.Compiler - 5.0.0-alpha.1 - ## Added + 5.0.0-alpha.2 + ## 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) embedded diff --git a/src/Fable.Transforms/Global/Compiler.fs b/src/Fable.Transforms/Global/Compiler.fs index 0a9fe9119..1bfc86411 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.1" + let VERSION = "5.0.0-alpha.2" [] let JS_LIBRARY_VERSION = "1.7.0"