File tree Expand file tree Collapse file tree 4 files changed +25
-8
lines changed Expand file tree Collapse file tree 4 files changed +25
-8
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ release lines.
8
8
9
9
Select a Node.js version below to view the changelog history:
10
10
11
- * [ Node.js 10] ( doc/changelogs/CHANGELOG_V10.md ) — ** Current **
11
+ * [ Node.js 10] ( doc/changelogs/CHANGELOG_V10.md ) — ** Long Term Support **
12
12
* [ 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
14
14
* [ Node.js 7] ( doc/changelogs/CHANGELOG_V7.md ) — End-of-Life
15
15
* [ Node.js 6] ( doc/changelogs/CHANGELOG_V6.md ) — Long Term Support
16
16
* [ Node.js 5] ( doc/changelogs/CHANGELOG_V5.md ) — End-of-Life
@@ -31,7 +31,8 @@ release.
31
31
</tr >
32
32
<tr >
33
33
<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 />
35
36
<a href =" doc/changelogs/CHANGELOG_V10.md#10.11.0 " >10.11.0</a ><br />
36
37
<a href =" doc/changelogs/CHANGELOG_V10.md#10.10.0 " >10.10.0</a ><br />
37
38
<a href =" doc/changelogs/CHANGELOG_V10.md#10.9.0 " >10.9.0</a ><br />
Original file line number Diff line number Diff line change 9
9
</tr >
10
10
<tr >
11
11
<td >
12
+ <a href =" #10.13.0 " >10.13.0</a ><br />
12
13
<a href =" #10.12.0 " >10.12.0</a ><br />
13
14
<a href =" #10.11.0 " >10.11.0</a ><br />
14
15
<a href =" #10.10.0 " >10.10.0</a ><br />
40
41
* [ io.js] ( CHANGELOG_IOJS.md )
41
42
* [ Archive] ( CHANGELOG_ARCHIVE.md )
42
43
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
+
43
57
<a id =" 10.12.0 " ></a >
44
58
## 2018-10-10, Version 10.12.0 (Current), @targos
45
59
Original file line number Diff line number Diff line change 23
23
#define SRC_NODE_VERSION_H_
24
24
25
25
#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
28
28
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 "
31
31
32
- #define NODE_VERSION_IS_RELEASE 0
32
+ #define NODE_VERSION_IS_RELEASE 1
33
33
34
34
#ifndef NODE_STRINGIFY
35
35
#define NODE_STRINGIFY (n ) NODE_STRINGIFY_HELPER(n)
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ if (versionParts[0] === '4' && versionParts[1] >= 2) {
15
15
assert . strictEqual ( process . release . lts , 'Boron' ) ;
16
16
} else if ( versionParts [ 0 ] === '8' && versionParts [ 1 ] >= 9 ) {
17
17
assert . strictEqual ( process . release . lts , 'Carbon' ) ;
18
+ } else if ( versionParts [ 0 ] === '10' && versionParts [ 1 ] >= 9 ) {
19
+ assert . strictEqual ( process . release . lts , 'Dubnium' ) ;
18
20
} else {
19
21
assert . strictEqual ( process . release . lts , undefined ) ;
20
22
}
You can’t perform that action at this time.
0 commit comments