diff options
author | isaacs <i@izs.me> | 2012-10-23 12:08:59 -0700 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-10-24 09:21:44 -0700 |
commit | 1ed4c6776e4f52956918b70565502e0f8869829d (patch) | |
tree | 99d58bde4d60f36106437ab9a8ee2d69ab66bd77 | |
parent | abf37c1e6655be89afaf5822108ca6dcf0f99096 (diff) | |
download | node-v0.9.3-release.tar.gz |
2012.10.24, Version 0.9.3 (Unstable)v0.9.3v0.9.3-release
* V8: Upgrade to 3.13.7.4
* crypto: Default to buffers instead of binary strings (isaacs, Fedor Indutny)
* crypto: add getHashes() and getCiphers() (Ben Noordhuis)
* unix: add custom thread pool, remove libeio (Ben Noordhuis)
* util: make `inspect()` accept an "options" argument (Nathan Rajlich)
* https: fix renegotation attack protection (Ben Noordhuis)
* cluster: make 'listening' handler see actual port (Aaditya Bhatia)
* windows: use USERPROFILE to get the user's home dir (Bert Belder)
* path: add platform specific path delimiter (Paul Serby)
* http: add response.headersSent property (Pavel Lang)
* child_process: make .fork()'d child auto-exit (Ben Noordhuis)
* events: add 'removeListener' event (Ben Noordhuis)
* string_decoder: Add 'end' method, do base64 properly (isaacs)
* buffer: include encoding value in exception when invalid (Ricky Ng-Adam)
* http: make http.ServerResponse no longer emit 'end' (isaacs)
* streams: fix pipe is destructed by 'end' from destination (koichik)
-rw-r--r-- | AUTHORS | 2 | ||||
-rw-r--r-- | ChangeLog | 35 | ||||
-rw-r--r-- | src/node_version.h | 2 |
3 files changed, 38 insertions, 1 deletions
@@ -376,3 +376,5 @@ Paul Serby <paul.serby@clock.co.uk> Andrew Paprocki <andrew@ishiboo.com> Ricky Ng-Adam <rngadam@lophilo.com> Aaditya Bhatia <aadityabhatia@gmail.com> +Max Ogden <max@maxogden.com> +Igor Soarez <igorsoarez@gmail.com> @@ -1,3 +1,38 @@ +2012.10.24, Version 0.9.3 (Unstable) + +* V8: Upgrade to 3.13.7.4 + +* crypto: Default to buffers instead of binary strings (isaacs, Fedor Indutny) + +* crypto: add getHashes() and getCiphers() (Ben Noordhuis) + +* unix: add custom thread pool, remove libeio (Ben Noordhuis) + +* util: make `inspect()` accept an "options" argument (Nathan Rajlich) + +* https: fix renegotation attack protection (Ben Noordhuis) + +* cluster: make 'listening' handler see actual port (Aaditya Bhatia) + +* windows: use USERPROFILE to get the user's home dir (Bert Belder) + +* path: add platform specific path delimiter (Paul Serby) + +* http: add response.headersSent property (Pavel Lang) + +* child_process: make .fork()'d child auto-exit (Ben Noordhuis) + +* events: add 'removeListener' event (Ben Noordhuis) + +* string_decoder: Add 'end' method, do base64 properly (isaacs) + +* buffer: include encoding value in exception when invalid (Ricky Ng-Adam) + +* http: make http.ServerResponse no longer emit 'end' (isaacs) + +* streams: fix pipe is destructed by 'end' from destination (koichik) + + 2012.09.17, Version 0.9.2 (Unstable) * http_parser: upgrade to ad3b631 diff --git a/src/node_version.h b/src/node_version.h index 0072f6720..cf79c684e 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -25,7 +25,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 9 #define NODE_PATCH_VERSION 3 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) |