From 5d3dc0e4c3369dfb00b7b13e08936c2e652fa696 Mon Sep 17 00:00:00 2001 From: isaacs Date: Mon, 13 May 2013 14:54:38 -0700 Subject: [PATCH] 2013.05.13, Version 0.11.2 (Unstable) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * uv: Upgrade to 0.11.2 * V8: Upgrade to 3.19.0 * npm: Upgrade to 1.2.21 * build: Makefile should respect configure --prefix (Timothy J Fontaine) * cluster: use round-robin load balancing (Ben Noordhuis) * debugger, cluster: each worker has new debug port (Miroslav Bajtoš) * debugger: `restart` with custom debug port (Miroslav Bajtoš) * debugger: breakpoints in scripts not loaded yet (Miroslav Bajtoš) * event: EventEmitter#setMaxListeners() returns this (Sam Roberts) * events: add EventEmitter.defaultMaxListeners (Ben Noordhuis) * install: Support $(PREFIX) install target directory prefix (Olof Johansson) * os: Include netmask in os.networkInterfaces() (Ben Kelly) * path: add path.isAbsolute(path) (Ryan Doenges) * stream: Guarantee ordering of 'finish' event (isaacs) * streams: introduce .cork/.uncork/._writev (Fedor Indutny) * vm: add support for timeout argument (Andrew Paprocki) --- AUTHORS | 5 +++++ ChangeLog | 59 ++++++++++++++++++++++++++++++++++++++++++++---------- src/node_version.h | 2 +- 3 files changed, 54 insertions(+), 12 deletions(-) diff --git a/AUTHORS b/AUTHORS index f8da639..1c0afd7 100644 --- a/AUTHORS +++ b/AUTHORS @@ -447,3 +447,8 @@ Ryan Doenges Sean Silva Miroslav Bajtoš Olof Johansson +Sam Roberts +Kevin Locke +Daniel Moore +Robert Kowalski +Nick Sullivan diff --git a/ChangeLog b/ChangeLog index 992c50f..80f1e24 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,25 +1,39 @@ -2013.04.23, Version 0.10.5 (Stable) +2013.05.13, Version 0.11.2 (Unstable) -* uv: Upgrade to 0.10.5 (isaacs) +* uv: Upgrade to 0.11.2 -* build: added support for Visual Studio 2012 (Miroslav Bajtoš) +* V8: Upgrade to 3.19.0 -* http: Don't try to destroy nonexistent sockets (isaacs) +* npm: Upgrade to 1.2.21 -* crypto: LazyTransform on properties, not methods (isaacs) +* build: Makefile should respect configure --prefix (Timothy J Fontaine) -* assert: put info in err.message, not err.name (Ryan Doenges) +* cluster: use round-robin load balancing (Ben Noordhuis) -* dgram: fix no address bind() (Ben Noordhuis) +* debugger, cluster: each worker has new debug port (Miroslav Bajtoš) -* handle_wrap: fix NULL pointer dereference (Ben Noordhuis) +* debugger: `restart` with custom debug port (Miroslav Bajtoš) -* os: fix unlikely buffer overflow in os.type() (Ben Noordhuis) +* debugger: breakpoints in scripts not loaded yet (Miroslav Bajtoš) -* stream: Fix unshift() race conditions (isaacs) +* event: EventEmitter#setMaxListeners() returns this (Sam Roberts) + +* events: add EventEmitter.defaultMaxListeners (Ben Noordhuis) +* install: Support $(PREFIX) install target directory prefix (Olof Johansson) -2013.04.19, Version 0.11.1 (Unstable) +* os: Include netmask in os.networkInterfaces() (Ben Kelly) + +* path: add path.isAbsolute(path) (Ryan Doenges) + +* stream: Guarantee ordering of 'finish' event (isaacs) + +* streams: introduce .cork/.uncork/._writev (Fedor Indutny) + +* vm: add support for timeout argument (Andrew Paprocki) + + +2013.04.19, Version 0.11.1 (Unstable), 4babd2b46ebf9fbea2c9946af5cfae25a33b2b22 * V8: upgrade to 3.18.0 @@ -46,6 +60,29 @@ * zlib: allow passing options to convenience methods (Kyle Robinson Young) +2013.04.23, Version 0.10.5 (Stable), deeaf8fab978e3cadb364e46fb32dafdebe5f095 + +* uv: Upgrade to 0.10.5 (isaacs) + +* build: added support for Visual Studio 2012 (Miroslav Bajtoš) + +* http: Don't try to destroy nonexistent sockets (isaacs) + +* crypto: LazyTransform on properties, not methods (isaacs) + +* assert: put info in err.message, not err.name (Ryan Doenges) + +* dgram: fix no address bind() (Ben Noordhuis) + +* handle_wrap: fix NULL pointer dereference (Ben Noordhuis) + +* os: fix unlikely buffer overflow in os.type() (Ben Noordhuis) + +* stream: Fix unshift() race conditions (isaacs) + + + + 2013.04.11, Version 0.10.4 (Stable), 9712aa9f76073c30850b20a188b1ed12ffb74d17 * uv: Upgrade to 0.10.4 diff --git a/src/node_version.h b/src/node_version.h index bdeb404..e7a7f37 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -26,7 +26,7 @@ #define NODE_MINOR_VERSION 11 #define NODE_PATCH_VERSION 2 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_TAG # define NODE_TAG "" -- 2.7.4