Skip to content

Commit 687867d

Browse files
committedMay 9, 2018
2018-05-08, Version 10.1.0 (Current)
Notable Changes: * console: - make console.table() use colored inspect (TSUYUSATO Kitsune) #20510 * fs: - move fs/promises to fs.promises (cjihrig) #20504 * http: - added aborted property to request (Robert Nagy) #20094 * n-api: - initialize a module via a special symbol (Gabriel Schulhof) #20161 * src: - add public API to expose the main V8 Platform (Allen Yonghuang Wang) #20447 PR-URL: #20606
1 parent e19200a commit 687867d

File tree

5 files changed

+199
-6
lines changed

5 files changed

+199
-6
lines changed
 

‎CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ release.
3333
</tr>
3434
<tr>
3535
<td valign="top">
36-
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.0.0">10.0.0</a></b><br/>
36+
<b><a href="doc/changelogs/CHANGELOG_V10.md#10.1.0">10.1.0</a></b><br/>
37+
<a href="doc/changelogs/CHANGELOG_V10.md#10.0.0">10.0.0</a><br/>
3738
</td>
3839
<td valign="top">
3940
<b><a href="doc/changelogs/CHANGELOG_V9.md#9.11.1">9.11.1</a></b><br/>

‎doc/api/http.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1496,7 +1496,7 @@ Just like `'end'`, this event occurs only once per response.
14961496

14971497
### message.aborted
14981498
<!-- YAML
1499-
added: REPLACEME
1499+
added: v10.1.0
15001500
-->
15011501

15021502
* {boolean}

‎doc/api/http2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2424,7 +2424,7 @@ Just like `'end'`, this event occurs only once per response.
24242424

24252425
#### request.aborted
24262426
<!-- YAML
2427-
added: REPLACEME
2427+
added: v10.1.0
24282428
-->
24292429

24302430
* {boolean}

‎doc/changelogs/CHANGELOG_V10.md

+192
Large diffs are not rendered by default.

‎src/node_version.h

+3-3
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 0
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 1
27+
#define NODE_PATCH_VERSION 0
2828

2929
#define NODE_VERSION_IS_LTS 0
3030
#define NODE_VERSION_LTS_CODENAME ""
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)

0 commit comments

Comments
 (0)
Please sign in to comment.