From 9e7bebeb8305edd55735a95955a98fdbe47572e5 Mon Sep 17 00:00:00 2001 From: isaacs Date: Fri, 18 Jan 2013 08:42:54 -0800 Subject: [PATCH] 2013.01.18, Version 0.9.7 (Unstable) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * V8: Upgrade to 3.15.11.7 * npm: Upgrade to 1.2.2 * punycode: Upgrade to 1.2.0 (Mathias Bynens) * repl: make built-in modules available by default (Felix Böhm) * windows: add support for '_Total' perf counters (Scott Blomquist) * cluster: make --prof work for workers (Ben Noordhuis) * child_process: do not keep list of sent sockets (Fedor Indutny) * tls: Follow RFC6125 more strictly (Fedor Indutny) * buffer: floating point read/write improvements (Trevor Norris) * TypedArrays: Improve dataview perf without endian param (Dean McNamee) * module: assert require() called with a non-empty string (Felix Böhm, James Campos) * stdio: Set readable/writable flags properly (isaacs) * stream: Properly handle large reads from push-streams (isaacs) --- AUTHORS | 2 ++ ChangeLog | 31 ++++++++++++++++++++++++++++++- src/node_version.h | 2 +- 3 files changed, 33 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index eb558aa..40f0651 100644 --- a/AUTHORS +++ b/AUTHORS @@ -401,3 +401,5 @@ Luke Bayes Nirk Niggler James Hight Mike Harsch +Alexandr Emelin +James Campos diff --git a/ChangeLog b/ChangeLog index d4805dc..6be7da4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,33 @@ -2013.01.11, Version 0.9.6 (Unstable) +2013.01.18, Version 0.9.7 (Unstable) + +* V8: Upgrade to 3.15.11.7 + +* npm: Upgrade to 1.2.2 + +* punycode: Upgrade to 1.2.0 (Mathias Bynens) + +* repl: make built-in modules available by default (Felix Böhm) + +* windows: add support for '_Total' perf counters (Scott Blomquist) + +* cluster: make --prof work for workers (Ben Noordhuis) + +* child_process: do not keep list of sent sockets (Fedor Indutny) + +* tls: Follow RFC6125 more strictly (Fedor Indutny) + +* buffer: floating point read/write improvements (Trevor Norris) + +* TypedArrays: Improve dataview perf without endian param (Dean McNamee) + +* module: assert require() called with a non-empty string (Felix Böhm, James Campos) + +* stdio: Set readable/writable flags properly (isaacs) + +* stream: Properly handle large reads from push-streams (isaacs) + + +2013.01.11, Version 0.9.6 (Unstable), 9313fdc71ca8335d5e3a391c103230ee6219b3e2 * V8: update to 3.15.11.5 diff --git a/src/node_version.h b/src/node_version.h index 6f8f39f..1c5ab44 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -30,7 +30,7 @@ # define NODE_TAG "" #endif -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) -- 2.7.4