Skip to content

Commit c6a397b

Browse files
committed
2016-10-14, Version 6.8.1 (Current)
* build: Fix building with shared zlib. (Bradley T. Hughes) [#9077](#9077) * stream: fix `Writable` subclass instanceof checks (Anna Henningsen) [#9088](#9088) * timers: fix regression with clearImmediate() (Brian White) [#9086](#9086) PR-URL: #9104
1 parent 8d2206f commit c6a397b

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.md

+2-1
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.8.0">6.8.0</a></b><br/>
29+
<b><a href="doc/changelogs/CHANGELOG_V6.md#6.8.1">6.8.1</a></b><br/>
30+
<a href="doc/changelogs/CHANGELOG_V6.md#6.8.0">6.8.0</a><br/>
3031
<a href="doc/changelogs/CHANGELOG_V6.md#6.7.0">6.7.0</a><br/>
3132
<a href="doc/changelogs/CHANGELOG_V6.md#6.6.0">6.6.0</a><br/>
3233
<a href="doc/changelogs/CHANGELOG_V6.md#6.5.0">6.5.0</a><br/>

doc/changelogs/CHANGELOG_V6.md

+16
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
</tr>
77
<tr>
88
<td>
9+
<a href="#6.8.1">6.8.1</a><br/>
910
<a href="#6.8.0">6.8.0</a><br/>
1011
<a href="#6.7.0">6.7.0</a><br/>
1112
<a href="#6.6.0">6.6.0</a><br/>
@@ -34,6 +35,21 @@
3435
[Node.js Long Term Support plan](https://github.com/nodejs/LTS) starting in
3536
October 2016.
3637

38+
<a id="6.8.1"></a>
39+
## 2016-10-14, Version 6.8.1 (Current), @evanlucas
40+
41+
### Notable changes
42+
43+
* **build**: Fix building with shared zlib. (Bradley T. Hughes) [#9077](https://github.com/nodejs/node/pull/9077)
44+
* **stream**: Fix regression in `stream.Writable` subclass `instanceof` checks. (Anna Henningsen) [#9088](https://github.com/nodejs/node/pull/9088)
45+
* **timers**: Fix regression where immediates that are cleared in the callback would never be called. (Brian White) [#9086](https://github.com/nodejs/node/pull/9086)
46+
47+
### Commits
48+
49+
* [[`8d2206fe41`](https://github.com/nodejs/node/commit/8d2206fe41)] - **build**: add -DZLIB_CONST when building with --shared-zlib (Bradley T. Hughes) [#9077](https://github.com/nodejs/node/pull/9077)
50+
* [[`8c4fab0a28`](https://github.com/nodejs/node/commit/8c4fab0a28)] - **stream**: fix `Writable` subclass instanceof checks (Anna Henningsen) [#9088](https://github.com/nodejs/node/pull/9088)
51+
* [[`7171bd6311`](https://github.com/nodejs/node/commit/7171bd6311)] - **timers**: fix regression with clearImmediate() (Brian White) [#9086](https://github.com/nodejs/node/pull/9086)
52+
3753
<a id="6.8.0"></a>
3854
## 2016-10-12, Version 6.8.0 (Current), @Fishrock123
3955

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#define NODE_MINOR_VERSION 8
66
#define NODE_PATCH_VERSION 1
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)