From c274d1643589bf104122674a8c3fd147527a667d Mon Sep 17 00:00:00 2001 From: isaacs Date: Wed, 20 Mar 2013 18:15:04 -0700 Subject: [PATCH] 2013.03.21, Version 0.10.1 (Stable) * npm: upgrade to 1.2.15 * crypto: Improve performance of non-stream APIs (Fedor Indutny) * tls: always reset this.ssl.error after handling (Fedor Indutny) * tls: Prevent mid-stream hangs (Fedor Indutny, isaacs) * net: improve arbitrary tcp socket support (Ben Noordhuis) * net: handle 'finish' event only after 'connect' (Fedor Indutny) * http: Don't hot-path end() for large buffers (isaacs) * fs: Missing cb errors are deprecated, not a throw (isaacs) * fs: make write/appendFileSync correctly set file mode (Raymond Feng) * stream: Return self from readable.wrap (isaacs) * stream: Never call decoder.end() multiple times (Gil Pedersen) * windows: enable watching signals with process.on('SIGXYZ') (Bert Belder) * node: revert removal of MakeCallback (Trevor Norris) * node: Unwrap without aborting in handle fd getter (isaacs) --- AUTHORS | 1 + ChangeLog | 33 ++++++++++++++++++++++++++++++++- src/node_version.h | 2 +- 3 files changed, 34 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index ae6e23976b2946..9b392cf39763b3 100644 --- a/AUTHORS +++ b/AUTHORS @@ -428,3 +428,4 @@ Scott Blomquist Henry Chin Julian Gruber JeongHoon Byun +Iskren Ivov Chernev diff --git a/ChangeLog b/ChangeLog index 5a5b8bc9342ad6..a6263414e297a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,35 @@ -2013.03.11, Version 0.10.0 (Stable) +2013.03.21, Version 0.10.1 (Stable) + +* npm: upgrade to 1.2.15 + +* crypto: Improve performance of non-stream APIs (Fedor Indutny) + +* tls: always reset this.ssl.error after handling (Fedor Indutny) + +* tls: Prevent mid-stream hangs (Fedor Indutny, isaacs) + +* net: improve arbitrary tcp socket support (Ben Noordhuis) + +* net: handle 'finish' event only after 'connect' (Fedor Indutny) + +* http: Don't hot-path end() for large buffers (isaacs) + +* fs: Missing cb errors are deprecated, not a throw (isaacs) + +* fs: make write/appendFileSync correctly set file mode (Raymond Feng) + +* stream: Return self from readable.wrap (isaacs) + +* stream: Never call decoder.end() multiple times (Gil Pedersen) + +* windows: enable watching signals with process.on('SIGXYZ') (Bert Belder) + +* node: revert removal of MakeCallback (Trevor Norris) + +* node: Unwrap without aborting in handle fd getter (isaacs) + + +2013.03.11, Version 0.10.0 (Stable), 163ca274230fce536afe76c64676c332693ad7c1 * npm: Upgrade to 1.2.14 diff --git a/src/node_version.h b/src/node_version.h index 65323e7046518a..c79dbcaca4288f 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)