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-09 02:46:07 +0300
committerRyan Dahl <ry@tinyclouds.org>2011-01-09 02:46:07 +0300
commit73f53e12e4a5b9ef7dbb4792bd5f8ad403094441 (patch)
treed11ef39e56c01fef7fcd9ff0a603d4e01b207788
parent0853730c35e567b1cd2e553986298e57f3908f02 (diff)
Bump version to v0.3.4v0.3.4
-rw-r--r--AUTHORS2
-rw-r--r--ChangeLog18
-rw-r--r--doc/index.html8
-rw-r--r--src/node_version.h2
4 files changed, 24 insertions, 6 deletions
diff --git a/AUTHORS b/AUTHORS
index c5a9261d21b..0cddc38b4a0 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -151,3 +151,5 @@ Devin Torres <devin@devintorres.com>
Theo Schlossnagle <jesus@omniti.com>
Kai Chen <kaichenxyz@gmail.com>
Daniel C <333222@gmail.com>
+Mihai Călin Bazon <mihai@bazon.net>
+
diff --git a/ChangeLog b/ChangeLog
index d204ce6dea6..0d8dfa23d15 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,20 @@
-2011.01.02, Version 0.3.3 (unstable)
+2011.01.08, Version 0.3.4 (unstable)
+
+* Primordal mingw build (Bert Belder)
+
+* HTTPS server
+
+* Built in debugger 'node debug script.js'
+
+* realpath files during module load (Mihai Călin Bazon)
+
+* Rename net.Stream to net.Socket (existing name will continue to be
+ supported)
+
+* Fix process.platform
+
+
+2011.01.02, Version 0.3.3 (unstable), 57544ba1c54c7d0da890317deeb73076350c5647
* TLS improvements.
diff --git a/doc/index.html b/doc/index.html
index a2eb949d27d..4734d620c0a 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.3/api">v0.3.3 docs</a></li>
+ <li><a href="http://nodejs.org/docs/v0.3.4/api">v0.3.4 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.02
- <a href="http://nodejs.org/dist/node-v0.3.3.tar.gz">node-v0.3.3.tar.gz</a>
- (<a href="http://nodejs.org/docs/v0.3.3/api/index.html">Documentation</a>)
+ Unstable: 2011.01.08
+ <a href="http://nodejs.org/dist/node-v0.3.4.tar.gz">node-v0.3.4.tar.gz</a>
+ (<a href="http://nodejs.org/docs/v0.3.4/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 70bd4be74b2..b59732ba96a 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 4
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)