Skip to content

Commit f336836

Browse files
committed
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.
1 parent b66f46c commit f336836

File tree

4 files changed

+25
-8
lines changed

4 files changed

+25
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ release lines.
88

99
Select a Node.js version below to view the changelog history:
1010

11-
* [Node.js 10](doc/changelogs/CHANGELOG_V10.md)**Current**
11+
* [Node.js 10](doc/changelogs/CHANGELOG_V10.md)**Long Term Support**
1212
* [Node.js 9](doc/changelogs/CHANGELOG_V9.md) — End-of-Life
13-
* [Node.js 8](doc/changelogs/CHANGELOG_V8.md)**Long Term Support**
13+
* [Node.js 8](doc/changelogs/CHANGELOG_V8.md) — Long Term Support
1414
* [Node.js 7](doc/changelogs/CHANGELOG_V7.md) — End-of-Life
1515
* [Node.js 6](doc/changelogs/CHANGELOG_V6.md) — Long Term Support
1616
* [Node.js 5](doc/changelogs/CHANGELOG_V5.md) — End-of-Life
@@ -31,7 +31,8 @@ release.
3131
</tr>
3232
<tr>
3333
<td valign="top">
34-
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.12.0">10.12.0</a></b><br/>
34+
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.13.0">10.13.0</a></b><br/>
35+
<a href="doc/changelogs/CHANGELOG_V10.md#10.12.0">10.12.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V10.md#10.11.0">10.11.0</a><br/>
3637
<a href="doc/changelogs/CHANGELOG_V10.md#10.10.0">10.10.0</a><br/>
3738
<a href="doc/changelogs/CHANGELOG_V10.md#10.9.0">10.9.0</a><br/>

doc/changelogs/CHANGELOG_V10.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
</tr>
1010
<tr>
1111
<td>
12+
<a href="#10.13.0">10.13.0</a><br/>
1213
<a href="#10.12.0">10.12.0</a><br/>
1314
<a href="#10.11.0">10.11.0</a><br/>
1415
<a href="#10.10.0">10.10.0</a><br/>
@@ -40,6 +41,19 @@
4041
* [io.js](CHANGELOG_IOJS.md)
4142
* [Archive](CHANGELOG_ARCHIVE.md)
4243

44+
<a id="10.13.0"></a>
45+
## 2018-10-30, Version 10.13.0 'Dubnium' (LTS), @MylesBorins
46+
47+
This release marks the transition of Node.js 10.x into Long Term
48+
Support (LTS) with the codename 'Dubnium'. The 10.x release line
49+
now moves in to "Active LTS" and will remain so until April 2020.
50+
After that time it will move in to "Maintenance" until end of
51+
life in April 2021.
52+
53+
### Notable Changes
54+
55+
There are no changes in this release aside from transitioning to LTS.
56+
4357
<a id="10.12.0"></a>
4458
## 2018-10-10, Version 10.12.0 (Current), @targos
4559

src/node_version.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 10
26-
#define NODE_MINOR_VERSION 12
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 13
27+
#define NODE_PATCH_VERSION 0
2828

29-
#define NODE_VERSION_IS_LTS 0
30-
#define NODE_VERSION_LTS_CODENAME ""
29+
#define NODE_VERSION_IS_LTS 1
30+
#define NODE_VERSION_LTS_CODENAME "Dubnium"
3131

32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

3434
#ifndef NODE_STRINGIFY
3535
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

test/parallel/test-process-release.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ if (versionParts[0] === '4' && versionParts[1] >= 2) {
1515
assert.strictEqual(process.release.lts, 'Boron');
1616
} else if (versionParts[0] === '8' && versionParts[1] >= 9) {
1717
assert.strictEqual(process.release.lts, 'Carbon');
18+
} else if (versionParts[0] === '10' && versionParts[1] >= 9) {
19+
assert.strictEqual(process.release.lts, 'Dubnium');
1820
} else {
1921
assert.strictEqual(process.release.lts, undefined);
2022
}

0 commit comments

Comments
 (0)