diff --git a/src/Fable.Cli/CHANGELOG.md b/src/Fable.Cli/CHANGELOG.md index fd33543ab..d6a75715f 100644 --- a/src/Fable.Cli/CHANGELOG.md +++ b/src/Fable.Cli/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 4.19.2 - 2024-06-13 + ### Fixed * [JS/TS] Fixed BigInt.ToDecimal with negative values (#3500) (by @ncave) diff --git a/src/Fable.Cli/Fable.Cli.fsproj b/src/Fable.Cli/Fable.Cli.fsproj index ec812b77a..ff5f29385 100644 --- a/src/Fable.Cli/Fable.Cli.fsproj +++ b/src/Fable.Cli/Fable.Cli.fsproj @@ -4,13 +4,10 @@ true Exe net6.0 - 4.19.1 + 4.19.2 ## Fixed -- [All] Ignore testers for erased union cases (#3658) (by @ncave) -- [All] Fixed Fable compiler hanging on some errors (#3842) (by @ncave) -- [JS/TS] Fixed DateTime.MinValue, DateTime.MaxValue (#3836) (by @ncave) -- [JS/TS] Fixed missing field using TypeScriptTaggedUnion (#3837) (by @ncave) +- [JS/TS] Fixed BigInt.ToDecimal with negative values (#3500) (by @ncave) diff --git a/src/Fable.Transforms/Global/Compiler.fs b/src/Fable.Transforms/Global/Compiler.fs index d1cc7661b..0b495b6fa 100644 --- a/src/Fable.Transforms/Global/Compiler.fs +++ b/src/Fable.Transforms/Global/Compiler.fs @@ -2,10 +2,10 @@ namespace Fable module Literals = [] - let VERSION = "4.19.1" + let VERSION = "4.19.2" [] - let JS_LIBRARY_VERSION = "1.4.1" + let JS_LIBRARY_VERSION = "1.4.2" type CompilerOptionsHelper = static member Make diff --git a/src/fable-library-ts/CHANGELOG.md b/src/fable-library-ts/CHANGELOG.md index f590e2f82..5def1bff8 100644 --- a/src/fable-library-ts/CHANGELOG.md +++ b/src/fable-library-ts/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 1.4.2 - 2024-06-13 + +### Fixed + +* [JS/TS] Fixed BigInt.ToDecimal with negative values (#3500) (by @ncave) + ## 1.4.1 - 2024-06-13 ### Fixed diff --git a/src/fable-library-ts/package.json b/src/fable-library-ts/package.json index 06cc8493e..7360705a3 100644 --- a/src/fable-library-ts/package.json +++ b/src/fable-library-ts/package.json @@ -3,7 +3,7 @@ "private": false, "type": "module", "name": "@fable-org/fable-library-ts", - "version": "1.4.1", + "version": "1.4.2", "description": "Core library used by F# projects compiled with fable.io", "author": "Fable Contributors", "license": "MIT", diff --git a/src/fable-standalone/package-lock.json b/src/fable-standalone/package-lock.json index a05ace3eb..346133e12 100644 --- a/src/fable-standalone/package-lock.json +++ b/src/fable-standalone/package-lock.json @@ -1,12 +1,12 @@ { "name": "@fable-org/fable-standalone", - "version": "1.7.0", + "version": "1.8.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@fable-org/fable-standalone", - "version": "1.7.0", + "version": "1.8.0", "license": "MIT", "devDependencies": { "esbuild": "^0.19.5",