diff --git a/CHANGELOG.md b/CHANGELOG.md
index bd78ef32e8ba0b..45f135aeb94378 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -35,7 +35,8 @@ release.
-20.13.0
+20.13.1
+20.13.0
20.12.2
20.12.1
20.12.0
diff --git a/doc/changelogs/CHANGELOG_V20.md b/doc/changelogs/CHANGELOG_V20.md
index b33bebe2265434..4790938a51a940 100644
--- a/doc/changelogs/CHANGELOG_V20.md
+++ b/doc/changelogs/CHANGELOG_V20.md
@@ -9,6 +9,7 @@
|
+20.13.1
20.13.0
20.12.2
20.12.1
@@ -58,6 +59,18 @@
* [io.js](CHANGELOG_IOJS.md)
* [Archive](CHANGELOG_ARCHIVE.md)
+
+
+## 2024-05-09, Version 20.13.1 'Iron' (LTS), @marco-ippolito
+
+### Revert "tools: install npm PowerShell scripts on Windows"
+
+Due to a regression in the npm installation on Windows, this commit reverts the change that installed npm PowerShell scripts on Windows.
+
+### Commits
+
+* \[[`b7d80802cc`](https://github.com/nodejs/node/commit/b7d80802cc)] - _**Revert**_ "**tools**: install npm PowerShell scripts on Windows" (marco-ippolito) [#52897](https://github.com/nodejs/node/pull/52897)
+
## 2024-05-07, Version 20.13.0 'Iron' (LTS), @marco-ippolito
diff --git a/src/node_version.h b/src/node_version.h
index 9dc4b560bc5dff..d9e381474ec769 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -29,7 +29,7 @@
#define NODE_VERSION_IS_LTS 1
#define NODE_VERSION_LTS_CODENAME "Iron"
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
|