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>2010-12-16 23:19:45 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-12-17 20:51:48 +0300
commit4bb914bde9f3c2d6de00853353b6b8fc9c66143a (patch)
tree54057de50721cfe9953b502c9a8c05b42c59bd6f
parentd1f36accbf473b9211b65b8c508ac76cc9c1530f (diff)
Bump version to v0.3.2v0.3.2
-rw-r--r--AUTHORS12
-rw-r--r--ChangeLog34
-rw-r--r--doc/index.html8
-rw-r--r--src/node_version.h2
-rw-r--r--wscript2
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 <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>
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 @@
<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>
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