diff --git a/CHANGELOG.md b/CHANGELOG.md
index b9aa947a756025..febc19e2179306 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -38,7 +38,8 @@ release.
18 (LTS) |
-23.3.0
+23.3.1
+23.3.0
23.2.0
23.1.0
23.0.0
diff --git a/doc/changelogs/CHANGELOG_V23.md b/doc/changelogs/CHANGELOG_V23.md
index 47b30d19b91bae..10200fe4788896 100644
--- a/doc/changelogs/CHANGELOG_V23.md
+++ b/doc/changelogs/CHANGELOG_V23.md
@@ -8,6 +8,7 @@
+23.3.1
23.3.0
23.2.0
23.1.0
@@ -41,6 +42,24 @@
* [io.js](CHANGELOG_IOJS.md)
* [Archive](CHANGELOG_ARCHIVE.md)
+
+
+## 2024-11-29, Version 23.3.1 (Current), @RafaelGSS
+
+### Notable Changes
+
+* \[[`5767b76c30`](https://github.com/nodejs/node/commit/5767b76c30)] - **doc**: enforce strict policy to semver-major releases (Rafael Gonzaga) [#55732](https://github.com/nodejs/node/pull/55732)
+* \[[`bcbba723de`](https://github.com/nodejs/node/commit/bcbba723de)] - **(SEMVER-MINOR)** **sqlite**: add support for SQLite Session Extension (Bart Louwers) [#54181](https://github.com/nodejs/node/pull/54181)
+* \[[`ccb69bb8d5`](https://github.com/nodejs/node/commit/ccb69bb8d5)] - **(SEMVER-MINOR)** **src**: add cli option to preserve env vars on dr (Rafael Gonzaga) [#55697](https://github.com/nodejs/node/pull/55697)
+* \[[`d4e792643d`](https://github.com/nodejs/node/commit/d4e792643d)] - **(SEMVER-MINOR)** **util**: add sourcemap support to getCallSites (Marco Ippolito) [#55589](https://github.com/nodejs/node/pull/55589)
+* \[[`00e092bb4b`](https://github.com/nodejs/node/commit/00e092bb4b)] - **(SEMVER-MINOR)** **util**: fix util.getCallSites plurality (Chengzhong Wu) [#55626](https://github.com/nodejs/node/pull/55626)
+
+### Commits
+
+* \[[`4af58d8eed`](https://github.com/nodejs/node/commit/4af58d8eed)] - fixup! fixup! build: add create release proposal action (RafaelGSS)
+* \[[`77e18432aa`](https://github.com/nodejs/node/commit/77e18432aa)] - fixup! build: add create release proposal action (RafaelGSS)
+* \[[`65b95febf3`](https://github.com/nodejs/node/commit/65b95febf3)] - **build**: add create release proposal action (RafaelGSS)
+
## 2024-11-20, Version 23.3.0 (Current), @RafaelGSS
diff --git a/src/node_version.h b/src/node_version.h
index 190b8a1f29d502..f3f92a5b168901 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -29,7 +29,7 @@
#define NODE_VERSION_IS_LTS 0
#define NODE_VERSION_LTS_CODENAME ""
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
|