diff --git a/src/Fable.Cli/CHANGELOG.md b/src/Fable.Cli/CHANGELOG.md
index d7a347baf0..3792252e8b 100644
--- a/src/Fable.Cli/CHANGELOG.md
+++ b/src/Fable.Cli/CHANGELOG.md
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
+## 4.3.0 - 2023-10-14
+
### Fixed
#### JavaScript
diff --git a/src/Fable.Cli/Fable.Cli.fsproj b/src/Fable.Cli/Fable.Cli.fsproj
index f37c65e3d2..41bce8049b 100644
--- a/src/Fable.Cli/Fable.Cli.fsproj
+++ b/src/Fable.Cli/Fable.Cli.fsproj
@@ -4,7 +4,7 @@
true
Exe
net6.0
- 4.2.2
+ 4.3.0
* Fix #3438: Source maps
* Fix #3440: Don't curry arity-1 functions
* Fix #3452: DateTimeOffset conversion to DateTime
diff --git a/src/Fable.Core/CHANGELOG.md b/src/Fable.Core/CHANGELOG.md
index dafc51e774..c5876364d1 100644
--- a/src/Fable.Core/CHANGELOG.md
+++ b/src/Fable.Core/CHANGELOG.md
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
+## 4.1.1
+
### Added
#### Python
diff --git a/src/Fable.Core/Fable.Core.fsproj b/src/Fable.Core/Fable.Core.fsproj
index 1154337608..c98bcb5073 100644
--- a/src/Fable.Core/Fable.Core.fsproj
+++ b/src/Fable.Core/Fable.Core.fsproj
@@ -5,7 +5,7 @@
Fable Core Library
netstandard2.0
true
- 4.1.0
+ 4.1.1
true
diff --git a/src/Fable.Transforms/Global/Compiler.fs b/src/Fable.Transforms/Global/Compiler.fs
index 6968e749a0..fa0567d3be 100644
--- a/src/Fable.Transforms/Global/Compiler.fs
+++ b/src/Fable.Transforms/Global/Compiler.fs
@@ -1,7 +1,7 @@
namespace Fable
module Literals =
- let [] VERSION = "4.2.2"
+ let [] VERSION = "4.3.0"
let [] JS_LIBRARY_VERSION = "1.1.1"
type CompilerOptionsHelper =