From 787a343b588de26784fef97f953420b53a6e1d73 Mon Sep 17 00:00:00 2001
From: Ryan Dahl
Date: Fri, 1 Apr 2011 18:00:43 -0700
Subject: [PATCH] Bump version to v0.4.5
---
ChangeLog | 21 ++++++++++++++++++++-
doc/index.html | 8 ++++----
src/node_version.h | 2 +-
wscript | 2 +-
4 files changed, 26 insertions(+), 7 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index bf60dc73453c66..e4a09248bbc019 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 4f5f5e27940d47..37b4275c1d1285 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -24,7 +24,7 @@
Download
ChangeLog
About
- v0.4.4 docs
+ v0.4.5 docs
Wiki
Blog
@@ -106,9 +106,9 @@ Download
- 2011.03.26
- node-v0.4.4.tar.gz
- (Documentation)
+ 2011.04.01
+ node-v0.4.5.tar.gz
+ (Documentation)
Historical: versions, docs
diff --git a/src/node_version.h b/src/node_version.h
index 147601aaf9b8d1..6516c12892c95a 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 76c0c5927e023a..7692e83f4ed2e9 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