Skip to content

Commit a740b42

Browse files
committed
2018-03-XX, Version 9.9.0 (Current)
Notable changes: TODO
1 parent d2b99e3 commit a740b42

File tree

7 files changed

+120
-15
lines changed

7 files changed

+120
-15
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ release.
2929
</tr>
3030
<tr>
3131
<td valign="top">
32-
<b><a href="doc/changelogs/CHANGELOG_V9.md#9.8.0">9.8.0</a></b><br/>
32+
<b><a href="doc/changelogs/CHANGELOG_V9.md#9.9.0">9.9.0</a></b><br/>
33+
<a href="doc/changelogs/CHANGELOG_V9.md#9.7.1">9.8.0</a><br/>
3334
<a href="doc/changelogs/CHANGELOG_V9.md#9.7.1">9.7.1</a><br/>
3435
<a href="doc/changelogs/CHANGELOG_V9.md#9.7.0">9.7.0</a><br/>
3536
<a href="doc/changelogs/CHANGELOG_V9.md#9.6.1">9.6.1</a><br/>

doc/api/assert.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ For more information about the used equality comparisons see
1515

1616
## Strict mode
1717
<!-- YAML
18-
added: REPLACEME
18+
added: v9.9.0
1919
changes:
20-
- version: REPLACEME
21-
pr-url: https://github.com/nodejs/node/pull/REPLACEME
20+
- version: v9.9.0
21+
pr-url: https://github.com/nodejs/node/pull/17615
2222
description: Added error diffs to the strict mode
23-
- version: REPLACEME
23+
- version: v9.9.0
2424
pr-url: https://github.com/nodejs/node/pull/17002
2525
description: Added strict mode to the assert module.
2626
-->
@@ -762,8 +762,8 @@ instead of the `AssertionError`.
762762
<!-- YAML
763763
added: v0.1.21
764764
changes:
765-
- version: REPLACEME
766-
pr-url: https://github.com/nodejs/node/pull/REPLACEME
765+
- version: v9.9.0
766+
pr-url: https://github.com/nodejs/node/pull/17584
767767
description: The `error` parameter can now be an object as well.
768768
- version: v4.2.0
769769
pr-url: https://github.com/nodejs/node/pull/3276

doc/api/tls.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ For Example: `{ type: 'ECDH', name: 'prime256v1', size: 256 }`
586586

587587
### tlsSocket.getFinished()
588588
<!-- YAML
589-
added: REPLACEME
589+
added: v9.9.0
590590
-->
591591

592592
* Returns: {Buffer|undefined} The latest `Finished` message that has been
@@ -646,7 +646,7 @@ If the peer does not provide a certificate, an empty object will be returned.
646646

647647
### tlsSocket.getPeerFinished()
648648
<!-- YAML
649-
added: REPLACEME
649+
added: v9.9.0
650650
-->
651651

652652
* Returns: {Buffer|undefined} The latest `Finished` message that is expected

doc/api/tty.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ is updated whenever the `'resize'` event is emitted.
123123

124124
### writeStream.getColorDepth([env])
125125
<!-- YAML
126-
added: REPLACEME
126+
added: v9.9.0
127127
-->
128128

129129
* `env` {object} A object containing the environment variables to check.

doc/api/util.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,8 +316,8 @@ stream.write('With ES6');
316316
<!-- YAML
317317
added: v0.3.0
318318
changes:
319-
- version: REPLACEME
320-
pr-url: https://github.com/nodejs/node/pull/REPLACEME
319+
- version: v9.9.0
320+
pr-url: https://github.com/nodejs/node/pull/17576
321321
description: The `compact` option is supported now.
322322
- version: v6.6.0
323323
pr-url: https://github.com/nodejs/node/pull/8174

doc/changelogs/CHANGELOG_V9.md

Lines changed: 104 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
@@ -23,13 +23,13 @@
2323
#define SRC_NODE_VERSION_H_
2424

2525
#define NODE_MAJOR_VERSION 9
26-
#define NODE_MINOR_VERSION 8
27-
#define NODE_PATCH_VERSION 1
26+
#define NODE_MINOR_VERSION 9
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)