summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-04-01 18:00:43 -0700
committerRyan Dahl <ry@tinyclouds.org>2011-04-01 18:00:43 -0700
commit787a343b588de26784fef97f953420b53a6e1d73 (patch)
tree44716fe1ac89b13a4f50d77122f1581f159c4b1a
parent6d85da185c850cf871e1aeec25baa3da1971610f (diff)
downloadnode-new-0.4.5.tar.gz
Bump version to v0.4.5v0.4.5
-rw-r--r--ChangeLog21
-rw-r--r--doc/index.html8
-rw-r--r--src/node_version.h2
-rw-r--r--wscript2
4 files changed, 26 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index bf60dc7345..e4a09248bb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,23 @@
-2011.03.26, Version 0.4.4 (stable)
+2011.04.01, Version 0.4.5 (stable)
+
+* Fix listener leak in stream.pipe() (Mikeal Rogers)
+
+* Retain buffers in fs.read/write() GH-814 (Jorge Chamorro Bieling)
+
+* TLS performance improvements
+
+* SlowBuffer.prototype.slice bug GH-843
+
+* process.stderr.write should return true
+
+* Immediate pause/resume race condition GH-535 (isaacs)
+
+* Set default host header properly GH-721 (isaacs)
+
+* Upgrade V8 to 3.1.8.8
+
+
+2011.03.26, Version 0.4.4 (stable), 25122b986a90ba0982697b7abcb0158c302a1019
* CryptoStream.end shouldn't throw if not writable GH-820
diff --git a/doc/index.html b/doc/index.html
index 4f5f5e2794..37b4275c1d 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -24,7 +24,7 @@
<li><a href="#download">Download</a></li>
<li><a href="https://github.com/joyent/node/raw/master/ChangeLog">ChangeLog</a></li>
<li><a href="#about">About</a></li>
- <li><a href="http://nodejs.org/docs/v0.4.4/api">v0.4.4 docs</a></li>
+ <li><a href="http://nodejs.org/docs/v0.4.5/api">v0.4.5 docs</a></li>
<br/>
<li><B><a href="https://github.com/joyent/node/wiki">Wiki</a></B></li>
<li><B><a href="http://blog.nodejs.org/">Blog</a></B></li>
@@ -106,9 +106,9 @@ server.listen(8124, "127.0.0.1");
</p>
<p>
- 2011.03.26
- <a href="http://nodejs.org/dist/node-v0.4.4.tar.gz">node-v0.4.4.tar.gz</a>
- (<a href="http://nodejs.org/docs/v0.4.4/api/index.html">Documentation</a>)
+ 2011.04.01
+ <a href="http://nodejs.org/dist/node-v0.4.5.tar.gz">node-v0.4.5.tar.gz</a>
+ (<a href="http://nodejs.org/docs/v0.4.5/api/index.html">Documentation</a>)
</p>
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
diff --git a/src/node_version.h b/src/node_version.h
index 147601aaf9..6516c12892 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -28,7 +28,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 4
#define NODE_PATCH_VERSION 5
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
diff --git a/wscript b/wscript
index 76c0c5927e..7692e83f4e 100644
--- a/wscript
+++ b/wscript
@@ -870,7 +870,7 @@ def build(bld):
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
, 'PREFIX' : safe_path(program.env["PREFIX"])
- , 'VERSION' : '0.4.4' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
+ , 'VERSION' : '0.4.5' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
}
return x