From d8579c6afdbe868de6dffa8db78bbe4ba2d03e0e Mon Sep 17 00:00:00 2001
From: Ryan Dahl
Date: Thu, 27 Jan 2011 19:41:07 -0800
Subject: [PATCH] Bump version to v0.3.7
---
AUTHORS | 6 +++++-
ChangeLog | 36 +++++++++++++++++++++++++++++++++++-
doc/index.html | 8 ++++----
src/node_version.h | 2 +-
wscript | 2 +-
5 files changed, 46 insertions(+), 8 deletions(-)
diff --git a/AUTHORS b/AUTHORS
index 0cddc38b4a0ae2..5cfa4152507554 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -152,4 +152,8 @@ Theo Schlossnagle
Kai Chen
Daniel C <333222@gmail.com>
Mihai Călin Bazon
-
+Ali Farhadi
+Daniel Ennis
+Carter Allen
+Greg Hughes
+David Trejo
diff --git a/ChangeLog b/ChangeLog
index a968e22bf8970c..830be20e23c2fd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,38 @@
-2011.01.21, Version 0.3.6 (unstable)
+2011.01.27, Version 0.3.7 (unstable)
+
+* Expose agent in http and https client. (Mikeal Rogers)
+
+* Fix bug in http request's end method. (Ali Farhadi)
+
+* MinGW: better net support (Bert Belder)
+
+* fs.open should set FD_CLOEXEC
+
+* DTrace probes (Bryan Cantrill)
+
+* REPL fixes and improvements (isaacs, Bert Belder)
+
+* Fix many bugs with legacy http.Client interface
+
+* Deprecate process.assert. Use require('assert').ok
+
+* Add callback parameter to socket.setTimeout(). (Ali Farhadi)
+
+* Fixing bug in http request default encoding (Ali Farhadi)
+
+* require: A module ID with a trailing slash must be a dir.
+ (isaacs)
+
+* Add ext_key_usage to getPeerCertificate (Greg Hughes)
+
+* Error when child_process.exec hits maxBuffer.
+
+* Fix option parsing in tls.connect()
+
+* Upgrade to V8 3.0.10
+
+
+2011.01.21, Version 0.3.6 (unstable), bb3e71466e5240626d9d21cf791fe43e87d90011
* REPL and other improvements on MinGW (Bert Belder)
diff --git a/doc/index.html b/doc/index.html
index 643d8aa5534c7c..cd8cb04a79eb92 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -20,7 +20,7 @@
Download
ChangeLog
About
- v0.3.6 docs
+ v0.3.7 docs
v0.2.6 docs
Wiki
@@ -96,9 +96,9 @@ Download
- Unstable: 2011.01.21
- node-v0.3.6.tar.gz
- (Documentation)
+ Unstable: 2011.01.27
+ node-v0.3.7.tar.gz
+ (Documentation)
Historical: versions, docs
diff --git a/src/node_version.h b/src/node_version.h
index 7cbc6c5ea76d85..b36aa6bd441c37 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -7,7 +7,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 3
#define NODE_PATCH_VERSION 7
-#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 2fb8f9ad32c027..1c5d9e2156ccae 100644
--- a/wscript
+++ b/wscript
@@ -775,7 +775,7 @@ def build(bld):
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
, 'PREFIX' : safe_path(program.env["PREFIX"])
- , 'VERSION' : '0.3.2' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
+ , 'VERSION' : '0.3.7' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
}
return x