From 4ced23deaf36493f4303a18f6fdce768c58becc0 Mon Sep 17 00:00:00 2001 From: isaacs Date: Fri, 4 May 2012 11:21:08 -0700 Subject: [PATCH] 2012.05.04 Version 0.6.17 (stable) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Upgrade npm to 1.1.21 * uv: Add support for EROFS errors (Ben Noordhuis, Maciej Małecki) * uv: Add support for EIO and ENOSPC errors (Fedor Indutny) * windows: Add support for EXDEV errors (Bert Belder) * http: Fix client memory leaks (isaacs, Vincent Voyer) * fs: fix file descriptor leak in sync functions (Ben Noordhuis) * fs: fix ReadStream / WriteStream double close bug (Ben Noordhuis) --- ChangeLog | 19 ++++++++++++++++++- src/node_version.h | 2 +- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 88b0f0d318ca2a..dc676bae841a67 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,21 @@ -2012.04.30 Version 0.6.16 (stable) +2012.05.04 Version 0.6.17 (stable) + +* Upgrade npm to 1.1.21 + +* uv: Add support for EROFS errors (Ben Noordhuis, Maciej Małecki) + +* uv: Add support for EIO and ENOSPC errors (Fedor Indutny) + +* windows: Add support for EXDEV errors (Bert Belder) + +* http: Fix client memory leaks (isaacs, Vincent Voyer) + +* fs: fix file descriptor leak in sync functions (Ben Noordhuis) + +* fs: fix ReadStream / WriteStream double close bug (Ben Noordhuis) + + +2012.04.30 Version 0.6.16 (stable), a1d193963ddc80a27da5da01b59751e14e33d1d6 * Upgrade V8 to 3.6.6.25 diff --git a/src/node_version.h b/src/node_version.h index fac6cad055790a..283bb2dd75f8c6 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -29,7 +29,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 6 #define NODE_PATCH_VERSION 17 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)