diff --git a/src/Fable.Cli/CHANGELOG.md b/src/Fable.Cli/CHANGELOG.md
index fa7162e21..23d5047e9 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.1 - 2024-06-13
+
### Fixed
* [All] Ignore testers for erased union cases (#3658) (by @ncave)
diff --git a/src/Fable.Cli/Fable.Cli.fsproj b/src/Fable.Cli/Fable.Cli.fsproj
index 119be18ac..ec812b77a 100644
--- a/src/Fable.Cli/Fable.Cli.fsproj
+++ b/src/Fable.Cli/Fable.Cli.fsproj
@@ -4,11 +4,13 @@
true
Exe
net6.0
- 4.19.0
+ 4.19.1
## Fixed
-- [TS] Fixed interface indexers (#3830) (by @ncave)
-- [GH-3835](https://github.com/fable-compiler/Fable/pull/3835) [All] Use case insensitive comparison when searching for dependencies between fable packages (by @ThisFunctionalTom)
+- [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)
diff --git a/src/Fable.Compiler/CHANGELOG.md b/src/Fable.Compiler/CHANGELOG.md
index 09b194434..b87eda027 100644
--- a/src/Fable.Compiler/CHANGELOG.md
+++ b/src/Fable.Compiler/CHANGELOG.md
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
+## 4.0.0-alpha-011 - 2024-06-13
+
+### Changed
+
+* Fable 4.19.1
+
## 4.0.0-alpha-010 - 2024-05-24
### Fixed
diff --git a/src/Fable.Compiler/Fable.Compiler.fsproj b/src/Fable.Compiler/Fable.Compiler.fsproj
index 5806edf85..857411d7b 100644
--- a/src/Fable.Compiler/Fable.Compiler.fsproj
+++ b/src/Fable.Compiler/Fable.Compiler.fsproj
@@ -6,10 +6,10 @@
true
true
Fable.Compiler
- 4.0.0-alpha-010
- ## Fixed
+ 4.0.0-alpha-011
+ ## Changed
-- [GH-3835](https://github.com/fable-compiler/Fable/pull/3835) [All] Use case insensitive comparison when searching for dependencies between fable packages (by @ThisFunctionalTom)
+- Fable 4.19.1
embedded
diff --git a/src/Fable.Transforms/Global/Compiler.fs b/src/Fable.Transforms/Global/Compiler.fs
index ed12d8d69..d1cc7661b 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.0"
+ let VERSION = "4.19.1"
[]
- let JS_LIBRARY_VERSION = "1.4.0"
+ let JS_LIBRARY_VERSION = "1.4.1"
type CompilerOptionsHelper =
static member Make
diff --git a/src/fable-library-ts/CHANGELOG.md b/src/fable-library-ts/CHANGELOG.md
index 093b59c35..f590e2f82 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.1 - 2024-06-13
+
+### Fixed
+
+* [JS/TS] Fixed DateTime.MinValue, DateTime.MaxValue (#3836) (by @ncave)
+
## 1.4.0 - 2024-03-20
### Added
diff --git a/src/fable-library-ts/package.json b/src/fable-library-ts/package.json
index 214bfad98..06cc8493e 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.0",
+ "version": "1.4.1",
"description": "Core library used by F# projects compiled with fable.io",
"author": "Fable Contributors",
"license": "MIT",
diff --git a/src/fable-standalone/CHANGELOG.md b/src/fable-standalone/CHANGELOG.md
index dc3d4a449..bbb575722 100644
--- a/src/fable-standalone/CHANGELOG.md
+++ b/src/fable-standalone/CHANGELOG.md
@@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
-## 1.7.0
+## 1.8.0 - 2024-06-13
+
+### Changed
+
+* Fable 4.19.1
+
+## 1.7.0 - 2024-06-10
### Changed
diff --git a/src/fable-standalone/package-lock.json b/src/fable-standalone/package-lock.json
index d37741f23..a05ace3eb 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.6.0",
+ "version": "1.7.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@fable-org/fable-standalone",
- "version": "1.6.0",
+ "version": "1.7.0",
"license": "MIT",
"devDependencies": {
"esbuild": "^0.19.5",
diff --git a/src/fable-standalone/package.json b/src/fable-standalone/package.json
index 2ea6a2ed1..7305d890e 100644
--- a/src/fable-standalone/package.json
+++ b/src/fable-standalone/package.json
@@ -2,7 +2,7 @@
"type": "module",
"name": "@fable-org/fable-standalone",
"private": false,
- "version": "1.7.0",
+ "version": "1.8.0",
"main": "./dist/bundle.min.js",
"description": "Fable compiler",
"keywords": [