Bump version to v0.3.2 v0.3.2
authorRyan Dahl <ry@tinyclouds.org>
Thu, 16 Dec 2010 20:19:45 +0000 (12:19 -0800)
committerRyan Dahl <ry@tinyclouds.org>
Fri, 17 Dec 2010 17:51:48 +0000 (09:51 -0800)
AUTHORS
ChangeLog
doc/index.html
src/node_version.h
wscript

diff --git a/AUTHORS b/AUTHORS
index e7be363..625580c 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -136,3 +136,15 @@ Vitali Lovich <vitali.lovich@palm.com>
 Stéphan Kochen <stephan@kochen.nl>
 Oleg Efimov <efimovov@gmail.com>
 Guillaume Tuton <guillaume@tuton.fr>
+Tim Cooijmans <tim@aapopfiets.nl>
+Dan Søndergaard <dan1990@gmail.com>
+Silas Sewell <silas@sewell.ch>
+Wade Simmons <wade@wades.im>
+Daniel Gröber <darklord@darkboxed.org>
+Travis Swicegood <development@domain51.com>
+Oleg Slobodskoi <oleg008@gmail.com>
+Jeremy Martin <jmar777@gmail.com>
+Michael W <gcr@sneakygcr.net>
+Sean Braithwaite <brapse@gmail.com>
+Anders Conbere <aconbere@gmail.com>
+Devin Torres <devin@devintorres.com>
index 64db0ca..7455b57 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,36 @@
-2010.11.16, Version 0.3.1 (unstable)
+2010.12.16, Version 0.3.2 (unstable)
+
+* Rip out the old (broken) TLS implementation introduce new tested
+  implementation and API. See docs. HTTPS not supported in this release.
+
+* Introduce 'os' and 'tty' modules.
+
+* Callback parameters for socket.write() and socket.connect().
+
+* Support CNAME lookups in DNS module. (Ben Noordhuis)
+
+* cmake support (Tom Hughes)
+
+* 'make lint'
+
+* oprofile support (./configure --oprofile)
+
+* Lots of bug fixes, including:
+  - Memory leak in ChildProcess:Spawn(). (Tom Hughes)
+  - buffer.slice(0, 0)
+  - Global variable leaks
+  - clearTimeouts calling multiple times (Michael W)
+  - utils.inspect's detection of circular structures (Tim Cooijmans)
+  - Apple's threaded write()s bug (Jorge Chamorro Bieling)
+  - Make sure raw mode is disabled when exiting a terminal-based REPL.
+    (Brian White)
+
+* Deprecate process.compile, process.ENV
+
+* Upgrade V8 to 3.0.3, upgrade http-parser.
+
+
+2010.11.16, Version 0.3.1 (unstable), ce9a54aa1fbf709dd30316af8a2f14d83150e947
 
 * TLS improvments (Paul Querna)
   - Centralize error handling in SecureStream
index 753b160..24db272 100644 (file)
@@ -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.1/api">v0.3.1 docs</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.2.5/api.html">v0.2.5 docs</a></li>
       </ol>
     </div>
@@ -92,9 +92,9 @@ net.createServer(function (socket) {
       </p>
 
       <p>
-        Unstable: 2010.11.16
-        <a href="http://nodejs.org/dist/node-v0.3.1.tar.gz">node-v0.3.1.tar.gz</a>
-        (<a href="http://nodejs.org/docs/v0.3.1/api/index.html">Documentation</a>)
+        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>)
       </p>
 
       <p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
index fc0b6b9..f540788 100644 (file)
@@ -7,7 +7,7 @@
 #define NODE_MAJOR_VERSION 0
 #define NODE_MINOR_VERSION 3
 #define NODE_PATCH_VERSION 2
-#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 016b2b0..b626dd9 100644 (file)
--- a/wscript
+++ b/wscript
@@ -638,7 +638,7 @@ def build(bld):
         , 'CPPFLAGS'  : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
         , 'LIBFLAGS'  : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
         , 'PREFIX'    : program.env["PREFIX"]
-        , 'VERSION'   : '0.3.1-pre' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.h
+        , 'VERSION'   : '0.3.2' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
         }
     return x