From f3368360fe76ac6983e8ac8458b969fa8f5cd04a Mon Sep 17 00:00:00 2001 From: Myles Borins Date: Tue, 23 Oct 2018 10:16:47 -0400 Subject: [PATCH] 2018-10-30 Version 10.13.0 'Dubnium' (LTS) This release marks the transition of Node.js 10.x into Long Term Support (LTS) with the codename 'Dubnium'. The 10.x release line now moves in to "Active LTS" and will remain so until April 2020. After that time it will move in to "Maintenance" until end of life in April 2021. Notable Changes: There are no changes in this release aside from transitioning to LTS. --- CHANGELOG.md | 7 ++++--- doc/changelogs/CHANGELOG_V10.md | 14 ++++++++++++++ src/node_version.h | 10 +++++----- test/parallel/test-process-release.js | 2 ++ 4 files changed, 25 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0064c09fe77b3..ab99af5f92621a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,9 +8,9 @@ release lines. Select a Node.js version below to view the changelog history: -* [Node.js 10](doc/changelogs/CHANGELOG_V10.md) — **Current** +* [Node.js 10](doc/changelogs/CHANGELOG_V10.md) — **Long Term Support** * [Node.js 9](doc/changelogs/CHANGELOG_V9.md) — End-of-Life -* [Node.js 8](doc/changelogs/CHANGELOG_V8.md) — **Long Term Support** +* [Node.js 8](doc/changelogs/CHANGELOG_V8.md) — Long Term Support * [Node.js 7](doc/changelogs/CHANGELOG_V7.md) — End-of-Life * [Node.js 6](doc/changelogs/CHANGELOG_V6.md) — Long Term Support * [Node.js 5](doc/changelogs/CHANGELOG_V5.md) — End-of-Life @@ -31,7 +31,8 @@ release. -10.12.0
+10.13.0
+10.12.0
10.11.0
10.10.0
10.9.0
diff --git a/doc/changelogs/CHANGELOG_V10.md b/doc/changelogs/CHANGELOG_V10.md index 5b69c7c4e52a64..f461e241e7c43d 100644 --- a/doc/changelogs/CHANGELOG_V10.md +++ b/doc/changelogs/CHANGELOG_V10.md @@ -9,6 +9,7 @@ +10.13.0
10.12.0
10.11.0
10.10.0
@@ -40,6 +41,19 @@ * [io.js](CHANGELOG_IOJS.md) * [Archive](CHANGELOG_ARCHIVE.md) + +## 2018-10-30, Version 10.13.0 'Dubnium' (LTS), @MylesBorins + +This release marks the transition of Node.js 10.x into Long Term +Support (LTS) with the codename 'Dubnium'. The 10.x release line +now moves in to "Active LTS" and will remain so until April 2020. +After that time it will move in to "Maintenance" until end of +life in April 2021. + +### Notable Changes + +There are no changes in this release aside from transitioning to LTS. + ## 2018-10-10, Version 10.12.0 (Current), @targos diff --git a/src/node_version.h b/src/node_version.h index 5b8f941fcb3879..7e7b31f8bc7859 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -23,13 +23,13 @@ #define SRC_NODE_VERSION_H_ #define NODE_MAJOR_VERSION 10 -#define NODE_MINOR_VERSION 12 -#define NODE_PATCH_VERSION 1 +#define NODE_MINOR_VERSION 13 +#define NODE_PATCH_VERSION 0 -#define NODE_VERSION_IS_LTS 0 -#define NODE_VERSION_LTS_CODENAME "" +#define NODE_VERSION_IS_LTS 1 +#define NODE_VERSION_LTS_CODENAME "Dubnium" -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) diff --git a/test/parallel/test-process-release.js b/test/parallel/test-process-release.js index 8b6bca9141beed..bc5778b3aeeff3 100644 --- a/test/parallel/test-process-release.js +++ b/test/parallel/test-process-release.js @@ -15,6 +15,8 @@ if (versionParts[0] === '4' && versionParts[1] >= 2) { assert.strictEqual(process.release.lts, 'Boron'); } else if (versionParts[0] === '8' && versionParts[1] >= 9) { assert.strictEqual(process.release.lts, 'Carbon'); +} else if (versionParts[0] === '10' && versionParts[1] >= 9) { + assert.strictEqual(process.release.lts, 'Dubnium'); } else { assert.strictEqual(process.release.lts, undefined); }