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-03 05:33:49 +0300
committerRyan Dahl <ry@tinyclouds.org>2011-01-03 05:33:49 +0300
commit57544ba1c54c7d0da890317deeb73076350c5647 (patch)
treea3691f43695612f773fb118ccf43fb9a810e8620
parentfeb77eab6563c849a99cf620c354d084faabc245 (diff)
Bump version to v0.3.3v0.3.3
-rw-r--r--AUTHORS3
-rw-r--r--ChangeLog25
-rw-r--r--doc/index.html8
-rw-r--r--src/node_version.h2
4 files changed, 32 insertions, 6 deletions
diff --git a/AUTHORS b/AUTHORS
index 625580c4053..c5a9261d21b 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -148,3 +148,6 @@ Michael W <gcr@sneakygcr.net>
Sean Braithwaite <brapse@gmail.com>
Anders Conbere <aconbere@gmail.com>
Devin Torres <devin@devintorres.com>
+Theo Schlossnagle <jesus@omniti.com>
+Kai Chen <kaichenxyz@gmail.com>
+Daniel C <333222@gmail.com>
diff --git a/ChangeLog b/ChangeLog
index 7455b572055..d204ce6dea6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,27 @@
-2010.12.16, Version 0.3.2 (unstable)
+2011.01.02, Version 0.3.3 (unstable)
+
+* TLS improvements.
+
+* url.parse(url, true) defaults query field to {} (Jeremy Martin)
+
+* Upgrade V8 to 3.0.4
+
+* Handle ECONNABORT properly (Theo Schlossnagle)
+
+* Fix memory leaks (Tom Hughes)
+
+* Add os.cpus(), os.freemem(), os.totalmem(), os.loadavg() and other
+ functions for OSX, Linux, and Cygwin. (Brian White)
+
+* Fix REPL syntax error bug (GH-543), improve how REPL commands are
+ evaulated.
+
+* Use process.stdin instead of process.openStdin().
+
+* Disable TLS tests when node doesn't have OpenSSL.
+
+
+2010.12.16, Version 0.3.2 (unstable), 4bb914bde9f3c2d6de00853353b6b8fc9c66143a
* Rip out the old (broken) TLS implementation introduce new tested
implementation and API. See docs. HTTPS not supported in this release.
diff --git a/doc/index.html b/doc/index.html
index da1c96296d9..7efb94bc27d 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.2/api">v0.3.2 docs</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.2.6/api.html">v0.2.6 docs</a></li>
</ol>
</div>
@@ -92,9 +92,9 @@ net.createServer(function (socket) {
</p>
<p>
- Unstable: 2010.12.16
- <a href="http://nodejs.org/dist/node-v0.3.2.tar.gz">node-v0.3.2.tar.gz</a>
- (<a href="http://nodejs.org/docs/v0.3.2/api/index.html">Documentation</a>)
+ 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>)
</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 51798bc6a5c..e1a92461ebf 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 3
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)