From 9a059ea69e1f6ebd8899246682d8ca257610b8ab Mon Sep 17 00:00:00 2001 From: isaacs Date: Wed, 14 Dec 2011 16:59:37 -0800 Subject: [PATCH] 2011.12.14, Version 0.6.6 (stable) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * npm update to 1.1.0-beta-4 (Isaac Z. Schlueter) * cli: fix output of --help (Ben Noordhuis) * new website * pause/resume semantics for stdin (Isaac Z. Schlueter) * Travis CI integration (Maciej Małecki) * child_process: Fix bug regarding closed stdin (Ben Noordhuis) * Enable upgrades in MSI. (Igor Zinkovsky) * net: Fixes memory leak (Ben Noordhuis) * fs: handle fractional or NaN ReadStream buffer size (Ben Noordhuis) * crypto: fix memory leaks in PBKDF2 error path (Ben Noordhuis) --- AUTHORS | 9 +++++++++ ChangeLog | 25 ++++++++++++++++++++++++- doc/index.html | 14 +++++++------- doc/logos/index.html | 2 +- doc/template.html | 4 ++-- src/node_version.h | 2 +- 6 files changed, 44 insertions(+), 12 deletions(-) diff --git a/AUTHORS b/AUTHORS index 1fa19d3b270b18..51e0c7dba7c087 100644 --- a/AUTHORS +++ b/AUTHORS @@ -235,3 +235,12 @@ Jacob H.C. Kragh Benjamin Pasero Scott Anderson Yoji SHIDARA +Mathias Bynens +Łukasz Walukiewicz +Artur Adib +E. Azer Koçulu +Roman Shtylman +Kyle Robinson Young +Tim Oxley +Ingmar Runge +Russ Bradberry diff --git a/ChangeLog b/ChangeLog index 9a544f0ea174a6..cccdbf2a2466c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,27 @@ -2011.12.04, Version 0.6.5 (stable) +2011.12.14, Version 0.6.6 (stable) + +* npm update to 1.1.0-beta-4 (Isaac Z. Schlueter) + +* cli: fix output of --help (Ben Noordhuis) + +* new website + +* pause/resume semantics for stdin (Isaac Z. Schlueter) + +* Travis CI integration (Maciej Małecki) + +* child_process: Fix bug regarding closed stdin (Ben Noordhuis) + +* Enable upgrades in MSI. (Igor Zinkovsky) + +* net: Fixes memory leak (Ben Noordhuis) + +* fs: handle fractional or NaN ReadStream buffer size (Ben Noordhuis) + +* crypto: fix memory leaks in PBKDF2 error path (Ben Noordhuis) + + +2011.12.04, Version 0.6.5 (stable), 6cc94db653a2739ab28e33b2d6a63c51bd986a9f * npm workaround Windows antivirus software (isaacs) diff --git a/doc/index.html b/doc/index.html index 9b74ce9906f251..95c3aeeb775841 100644 --- a/doc/index.html +++ b/doc/index.html @@ -76,15 +76,15 @@

Node.js in the Industry

X diff --git a/doc/logos/index.html b/doc/logos/index.html index e2887b8b4e5b68..250cd7275079ce 100644 --- a/doc/logos/index.html +++ b/doc/logos/index.html @@ -58,7 +58,7 @@

Desktop Background

diff --git a/doc/template.html b/doc/template.html index 8b8ab48348b76d..60826dcab2198b 100644 --- a/doc/template.html +++ b/doc/template.html @@ -2,7 +2,7 @@ - {{section}}Node.js v0.6.5 Manual & Documentation + {{section}}Node.js v0.6.6 Manual & Documentation @@ -10,7 +10,7 @@
-

Node.js v0.6.5 Manual & Documentation

+

Node.js v0.6.6 Manual & Documentation

diff --git a/src/node_version.h b/src/node_version.h index 42099bcb3a8953..2a8189bd3b0355 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 6 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)