Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-07-25 03:04:40 +0400
committerisaacs <i@izs.me>2012-07-25 04:06:58 +0400
commitf98562fcd7d1cab573ca4dc1612157d6999befd4 (patch)
treec194bebebb92ed2489108eaba672dee23ac50456
parent7fd3cb666bd2f39e675fb766a40cf83869ea232d (diff)
2012.07.25, Version 0.8.4 (Stable)v0.8.4
* V8: Upgrade to 3.11.10.17 * npm: Upgrade to 1.1.45 * net: fix Socket({ fd: 42 }) api (Ben Noordhuis) * readline: Remove event listeners on close (isaacs) * windows: correctly prep long path for fs.exists(Sync) (Bert Belder) * debugger: wake up the event loop when a debugger command is dispatched (Peter Rybin) * tls: verify server's identity (Fedor Indutny) * net: ignore socket.setTimeout(Infinity or NaN) (Fedor Indutny)
-rw-r--r--AUTHORS1
-rw-r--r--ChangeLog21
-rw-r--r--src/node_version.h2
3 files changed, 22 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index fcd0c1fe3da..7b8069e522d 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -350,3 +350,4 @@ Ivan Torres <mexpolk@gmail.com>
Philipp Hagemeister <phihag@phihag.de>
George Shank <shankga@gmail.com>
Mike Morearty <mike@morearty.com>
+Peter Rybin <peter.rybin@gmail.com>
diff --git a/ChangeLog b/ChangeLog
index 48633a76916..50269ce671c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,23 @@
-2012.07.19, Version 0.8.3 (Stable)
+2012.07.25, Version 0.8.4 (Stable)
+
+* V8: Upgrade to 3.11.10.17
+
+* npm: Upgrade to 1.1.45
+
+* net: fix Socket({ fd: 42 }) api (Ben Noordhuis)
+
+* readline: Remove event listeners on close (isaacs)
+
+* windows: correctly prep long path for fs.exists(Sync) (Bert Belder)
+
+* debugger: wake up the event loop when a debugger command is dispatched (Peter Rybin)
+
+* tls: verify server's identity (Fedor Indutny)
+
+* net: ignore socket.setTimeout(Infinity or NaN) (Fedor Indutny)
+
+
+2012.07.19, Version 0.8.3 (Stable), 60bf2d6cb33e4ce55604f73889ab840a9de8bdab
* V8: upgrade to 3.11.10.15
diff --git a/src/node_version.h b/src/node_version.h
index c8e8264d0b4..af2936a65de 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -25,7 +25,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 8
#define NODE_PATCH_VERSION 4
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)