From 25122b986a90ba0982697b7abcb0158c302a1019 Mon Sep 17 00:00:00 2001
From: Ryan Dahl
Date: Fri, 25 Mar 2011 16:30:54 -0700
Subject: [PATCH] Bump version to v0.4.4
---
AUTHORS | 4 ++++
ChangeLog | 19 ++++++++++++++++++-
doc/index.html | 8 ++++----
src/node_version.h | 2 +-
wscript | 2 +-
5 files changed, 28 insertions(+), 7 deletions(-)
diff --git a/AUTHORS b/AUTHORS
index 35d6f0b731..7159091579 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -164,3 +164,7 @@ Konstantin Käfer
Richard Rodger
Andreas Reich
Dean McNamee
+Trevor Burnham
+Zachary Scott
+Arnout Kazemier
+
diff --git a/ChangeLog b/ChangeLog
index 460c53dc63..bf60dc7345 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,21 @@
-2011.03.18, Version 0.4.3 (stable)
+2011.03.26, Version 0.4.4 (stable)
+
+* CryptoStream.end shouldn't throw if not writable GH-820
+
+* Drop out if connection destroyed before connect() GH-819
+
+* expose https.Agent
+
+* Correctly setsid in tty.open GH-815
+
+* Bug fix for failed buffer construction
+
+* Added support for removing .once listeners (GH-806)
+
+* Upgrade V8 to 3.1.8.5
+
+
+2011.03.18, Version 0.4.3 (stable), c095ce1a1b41ca015758a713283bf1f0bd41e4c4
* Don't decrease server connection counter again if destroy() is called more
than once GH-431 (Andreas Reich, Anders Conbere)
diff --git a/doc/index.html b/doc/index.html
index 47d91c55dc..4f5f5e2794 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -24,7 +24,7 @@
Download
ChangeLog
About
- v0.4.3 docs
+ v0.4.4 docs
Wiki
Blog
@@ -106,9 +106,9 @@ server.listen(8124, "127.0.0.1");
- 2011.03.18
- node-v0.4.3.tar.gz
- (Documentation)
+ 2011.03.26
+ node-v0.4.4.tar.gz
+ (Documentation)
Historical: versions, docs
diff --git a/src/node_version.h b/src/node_version.h
index b686790374..1ec1b3d012 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 4
-#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 c1b0b1e437..76c0c5927e 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.3' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
+ , 'VERSION' : '0.4.4' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
}
return x