From 4bb914bde9f3c2d6de00853353b6b8fc9c66143a Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 16 Dec 2010 12:19:45 -0800 Subject: Bump version to v0.3.2 --- AUTHORS | 12 ++++++++++++ ChangeLog | 34 +++++++++++++++++++++++++++++++++- doc/index.html | 8 ++++---- src/node_version.h | 2 +- wscript | 2 +- 5 files changed, 51 insertions(+), 7 deletions(-) diff --git a/AUTHORS b/AUTHORS index e7be363f253..625580c4053 100644 --- a/AUTHORS +++ b/AUTHORS @@ -136,3 +136,15 @@ Vitali Lovich Stéphan Kochen Oleg Efimov Guillaume Tuton +Tim Cooijmans +Dan Søndergaard +Silas Sewell +Wade Simmons +Daniel Gröber +Travis Swicegood +Oleg Slobodskoi +Jeremy Martin +Michael W +Sean Braithwaite +Anders Conbere +Devin Torres diff --git a/ChangeLog b/ChangeLog index 64db0caa6f4..7455b572055 100644 --- 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 diff --git a/doc/index.html b/doc/index.html index 753b1602060..24db2721111 100644 --- a/doc/index.html +++ b/doc/index.html @@ -23,7 +23,7 @@
  • About
  • Links
  • Contributing
  • -
  • v0.3.1 docs
  • +
  • v0.3.2 docs
  • v0.2.5 docs
  • @@ -92,9 +92,9 @@ net.createServer(function (socket) {

    - Unstable: 2010.11.16 - node-v0.3.1.tar.gz - (Documentation) + Unstable: 2010.12.16 + node-v0.3.2.tar.gz + (Documentation)

    Historical: versions, docs

    diff --git a/src/node_version.h b/src/node_version.h index fc0b6b9d517..f54078813e7 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 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 016b2b02548..b626dd93c6a 100644 --- 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 -- cgit v1.2.3