Skip to content

Commit dc0a13b

Browse files
author
Maxime Mangel
committed
Release 4.19.3
1 parent 914ab37 commit dc0a13b

File tree

7 files changed

+19
-7
lines changed

7 files changed

+19
-7
lines changed

src/Fable.Cli/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 4.19.3 - 2024-06-17
11+
1012
### Fixed
1113

1214
* [JS/TS] Fixed unwrapping optional arguments (#3847) (by @ncave)

src/Fable.Cli/Fable.Cli.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
55
<OutputType>Exe</OutputType>
66
<TargetFramework>net6.0</TargetFramework>
7-
<Version>4.19.2</Version>
7+
<Version>4.19.3</Version>
88
<PackageReleaseNotes>## Fixed
99

10-
- [JS/TS] Fixed BigInt.ToDecimal with negative values (#3500) (by @ncave)
10+
- [JS/TS] Fixed unwrapping optional arguments (#3847) (by @ncave)
1111

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

src/Fable.Compiler/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 4.0.0-alpha-012 - 2024-06-17
11+
12+
### Fixed
13+
14+
* [JS/TS] Fixed unwrapping optional arguments (#3847) (by @ncave)
15+
1016
## 4.0.0-alpha-011 - 2024-06-13
1117

1218
### Changed

src/Fable.Compiler/Fable.Compiler.fsproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
77
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
88
<RootNamespace>Fable.Compiler</RootNamespace>
9-
<Version>4.0.0-alpha-011</Version>
10-
<PackageReleaseNotes>## Changed
9+
<Version>4.0.0-alpha-012</Version>
10+
<PackageReleaseNotes>## Fixed
1111

12-
- Fable 4.19.1
12+
- [JS/TS] Fixed unwrapping optional arguments (#3847) (by @ncave)
1313

1414
</PackageReleaseNotes>
1515
<DebugType>embedded</DebugType>

src/Fable.Transforms/Global/Compiler.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace Fable
22

33
module Literals =
44
[<Literal>]
5-
let VERSION = "4.19.2"
5+
let VERSION = "4.19.3"
66

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

src/fable-standalone/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 1.8.1 - 2024-06-17
11+
12+
* Fable 4.19.3
13+
1014
## 1.8.0 - 2024-06-13
1115

1216
### Changed

src/fable-standalone/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"type": "module",
33
"name": "@fable-org/fable-standalone",
44
"private": false,
5-
"version": "1.8.0",
5+
"version": "1.8.1",
66
"main": "./dist/bundle.min.js",
77
"description": "Fable compiler",
88
"keywords": [

0 commit comments

Comments
 (0)