summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2013-03-01 09:58:35 -0800
committerisaacs <i@izs.me>2013-03-01 10:59:24 -0800
commit83392403b7a9b7782b37c17688938c75010f81ba (patch)
tree1368060e49af7cbba8ce4e8bea68877c42da97ff
parent687522c5a5149a463bb417da6e35100587315de3 (diff)
downloadnode-new-v0.9.11-release.tar.gz
2013.03.01, Version 0.9.10 (Unstable)v0.9.11v0.9.11-release
* V8: downgrade 3.14.5 * openssl: update to 1.0.1e * darwin: Make process.title work properly (Ben Noordhuis) * fs: Support mode/flag options to read/append/writeFile (isaacs) * stream: _read() no longer takes a callback (isaacs) * stream: Add stream.unshift(chunk) (isaacs) * stream: remove lowWaterMark feature (isaacs) * net: omit superfluous 'connect' event (Ben Noordhuis) * build, windows: disable SEH (Ben Noordhuis) * core: remove errno global (Ben Noordhuis) * core: Remove the nextTick for running the main file (isaacs) * core: Mark exit() calls with status codes (isaacs) * core: Fix debug signal handler race condition lock (isaacs) * crypto: clear error stack (Ben Noordhuis) * test: optionally set common.PORT via env variable (Timothy J Fontaine) * path: Throw TypeError on non-string args to path.resolve/join (isaacs, Arianit Uka) * crypto: fix uninitialized memory access in openssl (Ben Noordhuis)
-rw-r--r--AUTHORS2
-rw-r--r--ChangeLog49
-rw-r--r--src/node_version.h2
3 files changed, 46 insertions, 7 deletions
diff --git a/AUTHORS b/AUTHORS
index 891c701b92..70e0983a30 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -416,3 +416,5 @@ Sugendran Ganess <sugendran@sugendran.net>
Jim Schubert <james.schubert@gmail.com>
Victor Costan <costan@gmail.com>
Timothy J Fontaine <tjfontaine@gmail.com>
+Arianit Uka <arianit@bigvikinggames.com>
+Andrei Sedoi <bsnote@gmail.com>
diff --git a/ChangeLog b/ChangeLog
index 34d318c8ab..766b0a63b4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,14 +1,38 @@
-2013.02.25, Version 0.8.21 (Stable)
+2013.03.01, Version 0.9.10 (Unstable)
-* http: Do not free the wrong parser on socket close (isaacs)
+* V8: downgrade 3.14.5
-* http: Handle hangup writes more gently (isaacs)
+* openssl: update to 1.0.1e
-* zlib: fix assert on bad input (Ben Noordhuis)
+* darwin: Make process.title work properly (Ben Noordhuis)
-* test: add TAP output to the test runner (Timothy J Fontaine)
+* fs: Support mode/flag options to read/append/writeFile (isaacs)
-* unix: Handle EINPROGRESS from domain sockets (Ben Noordhuis)
+* stream: _read() no longer takes a callback (isaacs)
+
+* stream: Add stream.unshift(chunk) (isaacs)
+
+* stream: remove lowWaterMark feature (isaacs)
+
+* net: omit superfluous 'connect' event (Ben Noordhuis)
+
+* build, windows: disable SEH (Ben Noordhuis)
+
+* core: remove errno global (Ben Noordhuis)
+
+* core: Remove the nextTick for running the main file (isaacs)
+
+* core: Mark exit() calls with status codes (isaacs)
+
+* core: Fix debug signal handler race condition lock (isaacs)
+
+* crypto: clear error stack (Ben Noordhuis)
+
+* test: optionally set common.PORT via env variable (Timothy J Fontaine)
+
+* path: Throw TypeError on non-string args to path.resolve/join (isaacs, Arianit Uka)
+
+* crypto: fix uninitialized memory access in openssl (Ben Noordhuis)
2013.02.19, Version 0.9.10 (Unstable)
@@ -400,6 +424,19 @@
* Fix #3521 Make process.env more like a regular Object (isaacs)
+2013.02.25, Version 0.8.21 (Stable), 530d8c05d4c546146f18e5ba811d7eb3b7b7c0c5
+
+* http: Do not free the wrong parser on socket close (isaacs)
+
+* http: Handle hangup writes more gently (isaacs)
+
+* zlib: fix assert on bad input (Ben Noordhuis)
+
+* test: add TAP output to the test runner (Timothy J Fontaine)
+
+* unix: Handle EINPROGRESS from domain sockets (Ben Noordhuis)
+
+
2013.02.15, Version 0.8.20 (Stable), e10c75579b536581ddd7ae4e2c3bf8a9d550d343
* npm: Upgrade to v1.2.11
diff --git a/src/node_version.h b/src/node_version.h
index a205069332..eed49f90a7 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)