Skip to content

Commit 6498a3d

Browse files
committed
Release 5.0.0-alpha.2
1 parent a97e712 commit 6498a3d

File tree

5 files changed

+27
-27
lines changed

5 files changed

+27
-27
lines changed

src/Fable.Cli/CHANGELOG.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 5.0.0-alpha.2 - 2024-11-25
11+
12+
### Fixed
13+
14+
* [All] Allow Fable 5 to be used with Fable 4 plugins (@ncave)
15+
1016
## 5.0.0-alpha.1 - 2024-11-24
1117

1218
### Added
1319

14-
* [All] Add `--legacyCracker` as a fallback
20+
* [All] Add `--legacyCracker` as a fallback (@MangelMaxime)
1521

1622
### Changed
1723

18-
* [All] Make MSBuildCracker the default
19-
* [All] Replace `FABLE_COMPILER_4` with `FABLE_COMPILER_5` as the compiler directive
20-
* [All] Move TargetFramework to `net8.0`
24+
* [All] Make MSBuildCracker the default (@MangelMaxime)
25+
* [All] Replace `FABLE_COMPILER_4` with `FABLE_COMPILER_5` as the compiler directive (@MangelMaxime)
26+
* [All] Move TargetFramework to `net8.0` (@ncave)
2127

2228
## 4.24.0 - 2024-11-19
2329

src/Fable.Cli/Fable.Cli.fsproj

+3-9
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,10 @@
44
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
55
<OutputType>Exe</OutputType>
66
<TargetFramework>net8.0</TargetFramework>
7-
<Version>5.0.0-alpha.1</Version>
8-
<PackageReleaseNotes>## Added
7+
<Version>5.0.0-alpha.2</Version>
8+
<PackageReleaseNotes>## Fixed
99

10-
- [All] Add `--legacyCracker` as a fallback
11-
12-
## Changed
13-
14-
- [All] Make MSBuildCracker the default
15-
- [All] Replace `FABLE_COMPILER_4` with `FABLE_COMPILER_5` as the compiler directive
16-
- [All] Move TargetFramework to `net8.0`
10+
- [All] Allow Fable 5 to be used with Fable 4 plugins (@ncave)
1711

1812
</PackageReleaseNotes>
1913
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->

src/Fable.Compiler/CHANGELOG.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 5.0.0-alpha.2 - 2024-11-25
11+
12+
### Fixed
13+
14+
* [All] Allow Fable 5 to be used with Fable 4 plugins (@ncave)
15+
1016
## 5.0.0-alpha.1 - 2024-11-24
1117

1218
### Added
1319

14-
* [All] Add `--legacyCracker` as a fallback
20+
* [All] Add `--legacyCracker` as a fallback (@MangelMaxime)
1521

1622
### Changed
1723

18-
* [All] Make MSBuildCracker the default
19-
* [All] Replace `FABLE_COMPILER_4` with `FABLE_COMPILER_5` as the compiler directive
20-
* [All] Move TargetFramework to `net8.0`
24+
* [All] Make MSBuildCracker the default (@MangelMaxime)
25+
* [All] Replace `FABLE_COMPILER_4` with `FABLE_COMPILER_5` as the compiler directive (@MangelMaxime)
26+
* [All] Move TargetFramework to `net8.0` (@ncave)
2127

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

src/Fable.Compiler/Fable.Compiler.fsproj

+3-9
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,10 @@
66
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
77
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
88
<RootNamespace>Fable.Compiler</RootNamespace>
9-
<Version>5.0.0-alpha.1</Version>
10-
<PackageReleaseNotes>## Added
9+
<Version>5.0.0-alpha.2</Version>
10+
<PackageReleaseNotes>## Fixed
1111

12-
- [All] Add `--legacyCracker` as a fallback
13-
14-
## Changed
15-
16-
- [All] Make MSBuildCracker the default
17-
- [All] Replace `FABLE_COMPILER_4` with `FABLE_COMPILER_5` as the compiler directive
18-
- [All] Move TargetFramework to `net8.0`
12+
- [All] Allow Fable 5 to be used with Fable 4 plugins (@ncave)
1913

2014
</PackageReleaseNotes>
2115
<DebugType>embedded</DebugType>

src/Fable.Transforms/Global/Compiler.fs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace Fable
22

33
module Literals =
44
[<Literal>]
5-
let VERSION = "5.0.0-alpha.1"
5+
let VERSION = "5.0.0-alpha.2"
66

77
[<Literal>]
88
let JS_LIBRARY_VERSION = "1.7.0"

0 commit comments

Comments
 (0)