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-22 04:57:04 +0300
committerRyan Dahl <ry@tinyclouds.org>2011-01-22 05:18:37 +0300
commitbb3e71466e5240626d9d21cf791fe43e87d90011 (patch)
tree9875cfe8eee6d346e1c1d99c2285fbacfc4c309f
parent6703a7f1e06d100ca560f22b6065e049dae30dce (diff)
Bump version to v0.3.6v0.3.6
-rw-r--r--ChangeLog13
-rw-r--r--doc/index.html8
-rw-r--r--src/node_version.h2
3 files changed, 17 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 81d800c89f3..a968e22bf89 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,15 @@
-2011.01.16, Version 0.3.5 (unstable)
+2011.01.21, Version 0.3.6 (unstable)
+
+* REPL and other improvements on MinGW (Bert Belder)
+
+* listen/bind errors should close net.Server
+
+* New HTTP and HTTPS client APIs
+
+* Upgrade V8 to 3.0.9
+
+
+2011.01.16, Version 0.3.5 (unstable), b622bc6305e3c675e0edfcdbaa387d849ad0bba0
* Built-in debugger improvements.
diff --git a/doc/index.html b/doc/index.html
index 825a77de014..b0b3b2218d1 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -23,7 +23,7 @@
<li><a href="#about">About</a></li>
<li><a href="#links">Links</a></li>
<li><a href="#contributing">Contributing</a></li>
- <li><a href="http://nodejs.org/docs/v0.3.5/api">v0.3.5 docs</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.2.6/api.html">v0.2.6 docs</a></li>
</ol>
</div>
@@ -92,9 +92,9 @@ net.createServer(function (socket) {
</p>
<p>
- Unstable: 2011.01.16
- <a href="http://nodejs.org/dist/node-v0.3.5.tar.gz">node-v0.3.5.tar.gz</a>
- (<a href="http://nodejs.org/docs/v0.3.5/api/index.html">Documentation</a>)
+ 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>)
</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 b365b53ce8f..5738013e215 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 6
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)