Skip to content

Commit 4cd8f62

Browse files
author
Myles Borins
committed
2016-10-19, Version 6.9.1 'Boron' (LTS) Release
Notable changes: * streams: Fix a regression in readable stream that caused unpipe to remove the wrong stream (Anna Henningsen) PR-URL: #9186
1 parent 6072326 commit 4cd8f62

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ release.
2626
</tr>
2727
<tr>
2828
<td valign="top">
29-
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.9.0">6.9.0</a></b><br/>
29+
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.9.1">6.9.1</a></b><br/>
30+
<a href="doc/changelogs/CHANGELOG_V6.md#6.9.0">6.9.0</a><br/>
3031
<a href="doc/changelogs/CHANGELOG_V6.md#6.8.1">6.8.1</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V6.md#6.8.0">6.8.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V6.md#6.7.0">6.7.0</a><br/>

doc/changelogs/CHANGELOG_V6.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@
77
</tr>
88
<tr>
99
<td valign="top">
10-
<a href="#6.9.0">6.9.0</a><br/>
10+
<a href="#6.9.1">6.9.1</a><br/>
1111
</td>
1212
<td valign="top">
13+
<a href="#6.9.0">6.9.0</a><br/>
1314
<a href="#6.8.1">6.8.1</a><br/>
1415
<a href="#6.8.0">6.8.0</a><br/>
1516
<a href="#6.7.0">6.7.0</a><br/>
@@ -39,6 +40,22 @@
3940
[Node.js Long Term Support Plan](https://github.com/nodejs/LTS) and
4041
will be supported actively until April 2018 and maintained until April 2019.
4142

43+
<a id="6.9.1"></a>
44+
## 2016-10-19, Version 6.9.1 'Boron' (LTS), @thealphanerd
45+
46+
### Notable changes
47+
48+
* **streams**: Fix a regression in readable stream that caused unpipe to remove the wrong stream (Anna Henningsen)
49+
50+
### Commits
51+
52+
* [[`2c3bbb576c`](https://github.com/nodejs/node/commit/2c3bbb576c)] - **doc**: fix changelog index for v6.9.0 (Rod Vagg) [#9168](https://github.com/nodejs/node/pull/9168)
53+
* [[`f4b766f5b7`](https://github.com/nodejs/node/commit/f4b766f5b7)] - **streams**: fix regression in `unpipe()` (Anna Henningsen) [#9171](https://github.com/nodejs/node/pull/9171)
54+
* [[`6072326009`](https://github.com/nodejs/node/commit/6072326009)] - **test**: add regression test for `unpipe()` (Niels Nielsen) [#9171](https://github.com/nodejs/node/pull/9171)
55+
* [[`9f248a4d83`](https://github.com/nodejs/node/commit/9f248a4d83)] - **tools**: check tag is on github before release (Rod Vagg) [#9142](https://github.com/nodejs/node/pull/9142)
56+
* [[`c74d3a700a`](https://github.com/nodejs/node/commit/c74d3a700a)] - **tools**: make detached SHASUM .sig file for releases (Rod Vagg) [#9071](https://github.com/nodejs/node/pull/9071)
57+
* [[`955bbf876f`](https://github.com/nodejs/node/commit/955bbf876f)] - **tools**: explicitly set digest algo for SHASUM to 256 (Rod Vagg) [#9071](https://github.com/nodejs/node/pull/9071)
58+
4259
<a id="6.9.0"></a>
4360
## 2016-10-18, Version 6.9.0 'Boron' (LTS), @rvagg
4461

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define NODE_VERSION_IS_LTS 1
99
#define NODE_VERSION_LTS_CODENAME "Boron"
1010

11-
#define NODE_VERSION_IS_RELEASE 0
11+
#define NODE_VERSION_IS_RELEASE 1
1212

1313
#ifndef NODE_STRINGIFY
1414
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)