summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremiah Senkpiel <fishrock123@rocketmail.com>2017-07-20 13:52:31 -0400
committerJeremiah Senkpiel <fishrock123@rocketmail.com>2017-07-20 13:52:31 -0400
commitaa465eb173945e6d95b5a01abb4c01326a431f32 (patch)
treeccf330637c415ec931ced23e221dae1f99cc3317
parent6fce1a314ed008223fb5e6bc5b8e3252e7ca7238 (diff)
downloadnode-new-v8.2.1-proposal.tar.gz
2017-07-20, Version 8.2.1 (Current)v8.2.1-proposal
Notable changes * zlib: streams no longer attempt to process data when destroyed.
-rw-r--r--CHANGELOG.md3
-rw-r--r--doc/changelogs/CHANGELOG_V8.md12
-rw-r--r--src/node_version.h2
3 files changed, 15 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4caef61079..ab0fd98754 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -27,7 +27,8 @@ release.
</tr>
<tr>
<td valign="top">
-<b><a href="doc/changelogs/CHANGELOG_V8.md#8.2.0">8.2.0</a></b><br/>
+<b><a href="doc/changelogs/CHANGELOG_V8.md#8.2.1">8.2.1</a></b><br/>
+<a href="doc/changelogs/CHANGELOG_V8.md#8.2.0">8.2.0</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.1.4">8.1.4</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.1.3">8.1.3</a><br/>
<a href="doc/changelogs/CHANGELOG_V8.md#8.1.2">8.1.2</a><br/>
diff --git a/doc/changelogs/CHANGELOG_V8.md b/doc/changelogs/CHANGELOG_V8.md
index 1d01b6ebd3..26853c7945 100644
--- a/doc/changelogs/CHANGELOG_V8.md
+++ b/doc/changelogs/CHANGELOG_V8.md
@@ -6,6 +6,7 @@
</tr>
<tr>
<td>
+<a href="#8.2.1">8.2.1</a><br/>
<a href="#8.2.0">8.2.0</a><br/>
<a href="#8.1.4">8.1.4</a><br/>
<a href="#8.1.3">8.1.3</a><br/>
@@ -28,6 +29,17 @@
* [Archive](CHANGELOG_ARCHIVE.md)
<a id="8.2.0"></a>
+## 2017-07-20, Version 8.2.1 (Current), @fishrock123
+
+### Notable changes
+
+* **zlib**: streams no longer attempt to process data when destroyed.
+
+### Commits
+
+* [[`6fce1a314e`](https://github.com/nodejs/node/commit/6fce1a314e)] - **zlib**: check if the stream is destroyed before push (Matteo Collina) [#14330](https://github.com/nodejs/node/pull/14330)
+
+<a id="8.2.0"></a>
## 2017-07-19, Version 8.2.0 (Current), @fishrock123
Big thanks to @addaleax who prepared the vast majority of this release.
diff --git a/src/node_version.h b/src/node_version.h
index 4fbeac60e8..c776f61e26 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -26,7 +26,7 @@
#define NODE_MINOR_VERSION 2
#define NODE_PATCH_VERSION 1
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)