From 01994e8119c24f2284bac0779b32acb49c95bee7 Mon Sep 17 00:00:00 2001 From: isaacs Date: Sat, 29 Dec 2012 16:31:43 -0800 Subject: [PATCH] 2012.12.30, Version 0.9.5 (Unstable) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * assert: improve support for new execution contexts (lukebayes) * domain: use camelCase instead of snake_case (isaacs) * domain: Do not use uncaughtException handler (isaacs) * fs: make 'end' work with ReadStream without 'start' (Ben Noordhuis) * https: optimize createConnection() (Ryunosuke SATO) * buffer: speed up base64 encoding by 20% (Ben Noordhuis) * doc: Colorize API stabilitity index headers in docs (Luke Arduini) * net: socket.readyState corrections (bentaber) * http: Performance enhancements for http under streams2 (isaacs) * stream: fix to emit end event on http.ClientResponse (Shigeki Ohtsu) * stream: fix event handler leak in readstream pipe and unpipe (Andreas Madsen) * build: Support ./configure --tag switch (Maciej Małecki) * repl: don't touch `require.cache` (Nathan Rajlich) * node: Emit 'exit' event when exiting for an uncaught exception (isaacs) --- AUTHORS | 3 +++ ChangeLog | 33 ++++++++++++++++++++++++++++++++- src/node_version.h | 2 +- 3 files changed, 36 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 141cfc21c56668..8c19b8198a4fe3 100644 --- a/AUTHORS +++ b/AUTHORS @@ -393,3 +393,6 @@ Tim Kuijsten Michael Axiak Chad Rhyner Nicolas Chambrier +Ben Taber +Luke Arduini +Luke Bayes diff --git a/ChangeLog b/ChangeLog index 041fd8517a4053..da9978bae47087 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,35 @@ -2012.12.21, Version 0.9.4 (Unstable) +2012.12.30, Version 0.9.5 (Unstable) + +* assert: improve support for new execution contexts (lukebayes) + +* domain: use camelCase instead of snake_case (isaacs) + +* domain: Do not use uncaughtException handler (isaacs) + +* fs: make 'end' work with ReadStream without 'start' (Ben Noordhuis) + +* https: optimize createConnection() (Ryunosuke SATO) + +* buffer: speed up base64 encoding by 20% (Ben Noordhuis) + +* doc: Colorize API stabilitity index headers in docs (Luke Arduini) + +* net: socket.readyState corrections (bentaber) + +* http: Performance enhancements for http under streams2 (isaacs) + +* stream: fix to emit end event on http.ClientResponse (Shigeki Ohtsu) + +* stream: fix event handler leak in readstream pipe and unpipe (Andreas Madsen) + +* build: Support ./configure --tag switch (Maciej Małecki) + +* repl: don't touch `require.cache` (Nathan Rajlich) + +* node: Emit 'exit' event when exiting for an uncaught exception (isaacs) + + +2012.12.21, Version 0.9.4 (Unstable), d86d83c75f6343b5368bb7bd328b4466a035e1d4 * streams: Update all streaming interfaces to use new classes (isaacs) diff --git a/src/node_version.h b/src/node_version.h index f74b226d4db8c6..907d5d5b2008dd 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)