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-11-17 05:46:15 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-11-17 06:17:44 +0300
commitce9a54aa1fbf709dd30316af8a2f14d83150e947 (patch)
tree2bfbf13d68d43887d90e268f0d72375408808e46
parent03fa258df7d9e642c3ccac82d27c9c8167681cce (diff)
Bump version to v0.3.1v0.3.1
-rw-r--r--AUTHORS3
-rw-r--r--ChangeLog64
-rw-r--r--doc/index.html12
-rw-r--r--src/node_version.h2
4 files changed, 72 insertions, 9 deletions
diff --git a/AUTHORS b/AUTHORS
index 030b2006a87..e7be363f253 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -134,4 +134,5 @@ Sami Samhuri <sami.samhuri@gmail.com>
Nikhil Marathe <nsm.nikhil@gmail.com>
Vitali Lovich <vitali.lovich@palm.com>
Stéphan Kochen <stephan@kochen.nl>
-
+Oleg Efimov <efimovov@gmail.com>
+Guillaume Tuton <guillaume@tuton.fr>
diff --git a/ChangeLog b/ChangeLog
index 0068155dc92..64db0caa6f4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,66 @@
-2010.10.23, Version 0.3.0 (unstable)
+2010.11.16, Version 0.3.1 (unstable)
+
+* TLS improvments (Paul Querna)
+ - Centralize error handling in SecureStream
+ - Add SecurePair for handling of a ssl/tls stream.
+
+* New documentation organization (Micheil Smith)
+
+* allowHalfOpen TCP connections disabled by default.
+
+* Add C++ API for constructing fast buffer from string
+
+* Move idle timers into its own module
+
+* Gracefully handle EMFILE and server.maxConnections
+
+* make "node --eval" eval in the global scope.
+ (Jorge Chamorro Bieling)
+
+* Let exit listeners know the exit code (isaacs)
+
+* Handle cyclic links smarter in fs.realpath (isaacs)
+
+* Remove node-repl (just use 'node' without args)
+
+* Rewrite libeio After callback to use req->result instead of req->errorno
+ for error checking (Micheil Smith)
+
+* Remove warning about deprecating 'sys' - too aggressive
+
+* Make writes to process.env update the real environment. (Ben Noordhuis)
+
+* Set FD_CLOEXEC flag on stdio FDs before spawning. (Guillaume Tuton)
+
+* Move ev_loop out of javascript
+
+* Switch \n with \r\n for all strings printed out.
+
+* Added support for cross compilation (Rasmus Andersson)
+
+* Add --profile flag to configure script, enables gprof profiling.
+ (Ben Noordhuis)
+
+* writeFileSync could exhibit pathological behavior when a buffer
+ could not be written to the file in a single write() call.
+
+* new path.join behavior (isaacs)
+ - Express desired path.join behavior in tests.
+ - Update fs.realpath to reflect new path.join behavior
+ - Update url.resolve() to use new path.join behavior.
+
+* API: Move process.binding('evals') to require('vm')
+
+* Fix V8 build on Cygwin (Bert Belder)
+
+* Add ref to buffer during fs.write and fs.read
+
+* Fix segfault on test-crypto
+
+* Upgrade http-parser to latest and V8 to 2.5.3
+
+
+2010.10.23, Version 0.3.0 (unstable) 1582cfebd6719b2d2373547994b3dca5c8c569c0
* Bugfix: Do not spin on aceept() with EMFILE
diff --git a/doc/index.html b/doc/index.html
index b41b6f293b4..a3bbe653905 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -85,15 +85,15 @@ net.createServer(function (socket) {
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- Stable: 2010.10.23
- <a href="http://nodejs.org/dist/node-v0.2.4.tar.gz">node-v0.2.4.tar.gz</a>
- (<a href="http://nodejs.org/docs/v0.2.4/api.html">Documentation</a>)
+ Stable: 2010.11.16
+ <a href="http://nodejs.org/dist/node-v0.2.5.tar.gz">node-v0.2.5.tar.gz</a>
+ (<a href="http://nodejs.org/docs/v0.2.5/api.html">Documentation</a>)
</p>
<p>
- Unstable: 2010.10.23
- <a href="http://nodejs.org/dist/node-v0.3.0.tar.gz">node-v0.3.0.tar.gz</a>
- (<a href="http://nodejs.org/docs/v0.3.0/api.html">Documentation</a>)
+ 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>)
</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 a0621ca532d..b6e750dcd62 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 1
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)