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:
authorRyan Dahl <ry@tinyclouds.org>2011-01-28 06:41:07 +0300
committerRyan Dahl <ry@tinyclouds.org>2011-01-28 07:07:54 +0300
commitd8579c6afdbe868de6dffa8db78bbe4ba2d03e0e (patch)
tree8e82dea222825d4a6c998c4d7fec9e287ee36d2c
parent286389202febece60925123918424edb4e2f870a (diff)
Bump version to v0.3.7v0.3.7
-rw-r--r--AUTHORS6
-rw-r--r--ChangeLog36
-rw-r--r--doc/index.html8
-rw-r--r--src/node_version.h2
-rw-r--r--wscript2
5 files changed, 46 insertions, 8 deletions
diff --git a/AUTHORS b/AUTHORS
index 0cddc38b4a0..5cfa4152507 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -152,4 +152,8 @@ Theo Schlossnagle <jesus@omniti.com>
Kai Chen <kaichenxyz@gmail.com>
Daniel C <333222@gmail.com>
Mihai Călin Bazon <mihai@bazon.net>
-
+Ali Farhadi <a.farhadi@gmail.com>
+Daniel Ennis <aikar@aikar.co>
+Carter Allen <CarterA@opt-6.com>
+Greg Hughes <greg@ghughes.com>
+David Trejo <david.daniel.trejo@gmail.com>
diff --git a/ChangeLog b/ChangeLog
index a968e22bf89..830be20e23c 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 643d8aa5534..cd8cb04a79e 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -20,7 +20,7 @@
<li><a href="#download">Download</a></li>
<li><a href="https://github.com/ry/node/raw/master/ChangeLog">ChangeLog</a></li>
<li><a href="#about">About</a></li>
- <li><a href="http://nodejs.org/docs/v0.3.6/api">v0.3.6 docs</a></li>
+ <li><a href="http://nodejs.org/docs/v0.3.7/api">v0.3.7 docs</a></li>
<li><a href="http://nodejs.org/docs/v0.2.6/api.html">v0.2.6 docs</a></li>
<br/>
<li><B><a href="https://github.com/ry/node/wiki">Wiki</a></B></li>
@@ -96,9 +96,9 @@ net.createServer(function (socket) {
</p>
<p>
- Unstable: 2011.01.21
- <a href="http://nodejs.org/dist/node-v0.3.6.tar.gz">node-v0.3.6.tar.gz</a>
- (<a href="http://nodejs.org/docs/v0.3.6/api/index.html">Documentation</a>)
+ Unstable: 2011.01.27
+ <a href="http://nodejs.org/dist/node-v0.3.7.tar.gz">node-v0.3.7.tar.gz</a>
+ (<a href="http://nodejs.org/docs/v0.3.7/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 7cbc6c5ea76..b36aa6bd441 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 2fb8f9ad32c..1c5d9e2156c 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