diff --git a/AUTHORS b/AUTHORS index 96b07b7f276e1c..e3bd0e6d9a87b9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -410,3 +410,5 @@ Tim Price Jake Verbaten Jacob Gable Rick Yakubowski +Andy Burke +Sugendran Ganess diff --git a/ChangeLog b/ChangeLog index c3bde675c8466a..1b46274663cb10 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,31 @@ -2013.01.24, Version 0.9.8 (Unstable) +2013.02.07, Version 0.9.9 (Unstable) + +* tls: port CryptoStream to streams2 (Fedor Indutny) + +* typed arrays: only share ArrayBuffer backing store (Ben Noordhuis) + +* stream: make Writable#end() accept a callback function (Nathan Rajlich) + +* buffer: optimize 'hex' handling (Ben Noordhuis) + +* dns, cares: don't filter NOTIMP, REFUSED, SERVFAIL (Ben Noordhuis) + +* readline: treat bare \r as a line ending (isaacs) + +* readline: make \r\n emit one 'line' event (Ben Noordhuis) + +* cluster: support datagram sockets (Bert Belder) + +* stream: Correct Transform class backpressure (isaacs) + +* addon: Pass module object to NODE_MODULE init function (isaacs, Rod Vagg) + +* buffer: slow buffer copy compatibility fix (Trevor Norris) + +* Add bytesWritten to tls.CryptoStream (Andy Burke) + + +2013.01.24, Version 0.9.8 (Unstable), 5f2f8400f665dc32c3e10e7d31d53d756ded9156 * npm: Upgrade to v1.2.3 diff --git a/src/node_version.h b/src/node_version.h index 9491f28e50d6db..715375c4e184dd 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)