Skip to content

Commit 0a3a967

Browse files
committed
2016-11-08, Version 7.1.0 (Current)
Notable changes: * buffer: add buffer.transcode to transcode a buffer's content from one encoding to another primarily using ICU (James M Snell) * child_process: add public API for IPC channel (cjihrig) * icu * Upgraded to ICU 58 - small icu (Steven R. Loomis) * Add `cldr`, `tz`, and `unicode` to `process.versions` (Steven R. Loomis) * lib: make `String(global) === '[object global]'` (Anna Henningsen) * libuv: Upgraded to 1.10.0 (cjihrig) * readline: use icu based string width calculation (James M Snell) * src: * add NODE_PRESERVE_SYMLINKS environment variable that has the same effect as the `--preserve-symlinks` flag (Marc Udoff) * Fix `String#toLocaleUpperCase()` and `String#toLocaleLowerCase()` (Steven R. Loomis) PR-URL: nodejs#9438
1 parent 173b088 commit 0a3a967

File tree

7 files changed

+147
-8
lines changed

7 files changed

+147
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ release.
2828
</tr>
2929
<tr>
3030
<td valign="top">
31-
<b><a href="doc/changelogs/CHANGELOG_V7.md#7.0.0">7.0.0</a></b><br/>
31+
<b><a href="doc/changelogs/CHANGELOG_V7.md#7.1.0">7.1.0</a></b><br/>
32+
<a href="doc/changelogs/CHANGELOG_V7.md#7.0.0">7.0.0</a><br/>
3233
</td>
3334
<td valign="top">
3435
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.7.0">6.7.0</a></b><br/>

doc/api/buffer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2308,7 +2308,7 @@ On 64-bit architectures, this value is `(2^31)-1` (~2GB).
23082308

23092309
## buffer.transcode(source, fromEnc, toEnc)
23102310
<!-- YAML
2311-
added: REPLACEME
2311+
added: v7.1.0
23122312
-->
23132313

23142314
* `source` {Buffer} A `Buffer` instance

doc/api/child_process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ to send messages.
778778

779779
### child.channel
780780
<!-- YAML
781-
added: REPLACEME
781+
added: v7.1.0
782782
-->
783783

784784
* {Object} A pipe representing the IPC channel to the child process.

doc/api/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ with small-icu support.
289289

290290
### `NODE_PRESERVE_SYMLINKS=1`
291291
<!-- YAML
292-
added: REPLACEME
292+
added: v7.1.0
293293
-->
294294

295295
When set to `1`, instructs the module loader to preserve symbolic links when

doc/api/process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ $ bash -c 'exec -a customArgv0 ./node'
510510

511511
## process.channel
512512
<!-- YAML
513-
added: REPLACEME
513+
added: v7.1.0
514514
-->
515515

516516
If the Node.js process was spawned with an IPC channel (see the

doc/changelogs/CHANGELOG_V7.md

Lines changed: 138 additions & 0 deletions
Large diffs are not rendered by default.

src/node_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
#define SRC_NODE_VERSION_H_
33

44
#define NODE_MAJOR_VERSION 7
5-
#define NODE_MINOR_VERSION 0
6-
#define NODE_PATCH_VERSION 1
5+
#define NODE_MINOR_VERSION 1
6+
#define NODE_PATCH_VERSION 0
77

8-
#define NODE_VERSION_IS_RELEASE 0
8+
#define NODE_VERSION_IS_RELEASE 1
99

1010
#ifndef NODE_STRINGIFY
1111
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)