Skip to content

Commit

Permalink
Release 4.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MangelMaxime committed Feb 13, 2024
1 parent 1353066 commit 8efcd15
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 12 deletions.
6 changes: 6 additions & 0 deletions src/Fable.AST/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

## 4.4.0 - 2024-02-13

### Changed

* Change `| TypeCast of expr: Expr * Type` to `| TypeCast of expr: Expr * typ: Type`

## 4.3.0 - 2023-09-29

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/Fable.AST/Fable.AST.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Description>Fable AST</Description>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Version>4.3.0</Version>
<Version>4.4.0</Version>
</PropertyGroup>
<ItemGroup>
<Compile Include="Common.fs" />
Expand Down
8 changes: 7 additions & 1 deletion src/Fable.Cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 4.12.1 - 2024-02-12
## 4.12.2 - 2024-02-13

### Changed

* Update to Fable.AST 4.4.0

## 4.12.1 - 2024-02-13

### Fixed

Expand Down
9 changes: 3 additions & 6 deletions src/Fable.Cli/Fable.Cli.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,10 @@
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Version>4.12.1</Version>
<PackageReleaseNotes>## Fixed
<Version>4.12.2</Version>
<PackageReleaseNotes>## Changed


### JavaScript

- Embed `fable-library-js` in Fable DLL (by @MangelMaxime)
- Update to Fable.AST 4.4.0

</PackageReleaseNotes>
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
Expand Down
6 changes: 6 additions & 0 deletions src/Fable.Compiler/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

## 4.0.0-alpha-006 - 2024-02-12

### Changed

* Update to Fable.AST 4.4.0

## 4.0.0-alpha-005 - 2024-02-12

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

- [GH-3742](https://github.com/fable-compiler/Fable/pull/3742) Return diagnostics in compile response (by @nojaf)
- [GH-3746](https://github.com/fable-compiler/Fable/pull/3746) Extract type-checking from compilation (by @nojaf)
- Update to Fable.AST 4.4.0

</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 @@ -4,7 +4,7 @@ open System

module Literals =
[<Literal>]
let VERSION = "4.12.1"
let VERSION = "4.12.2"

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

0 comments on commit 8efcd15

Please sign in to comment.