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 01:58:23 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-11-17 08:46:59 +0300
commit74a1fc334e486683d6da02fd918725d246ffc273 (patch)
treec170a3b0b059652b9d32bac9c7454e5f9e3936a3
parent44fa89cda815e749cda9493ea313ef3679689a61 (diff)
Bump version to 0.2.5v0.2.5
-rw-r--r--AUTHORS1
-rw-r--r--ChangeLog42
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html8
-rw-r--r--src/node_version.h2
5 files changed, 48 insertions, 7 deletions
diff --git a/AUTHORS b/AUTHORS
index cd230cf88e8..49f5edbd233 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -127,3 +127,4 @@ Joshua Peek <josh@joshpeek.com>
Nathan Rajlich <nathan@tootallnate.net>
Tom Hughes <tom.hughes@palm.com>
Vitali Lovich <vitali.lovich@palm.com>
+Guillaume Tuton <guillaume@tuton.fr>
diff --git a/ChangeLog b/ChangeLog
index 32e6bb48463..7a63c6c3f86 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,44 @@
-2010.10.24, Version 0.2.4
+2010.11.16, Version 0.2.5
+
+* Add ref to buffer during fs.write and fs.read. Sometimes buffers
+ would be GCed before making it to the thread pool.
+
+* Fix http buffer pushing bug:
+ http://groups.google.com/group/nodejs/browse_thread/thread/f66cd3c960406919
+
+* Gracefully handle EMFILE and server.maxConnections
+
+* "node --eval" evals in the global scope. (Jorge Chamorro Bieling)
+
+* Handle cyclic links smarter in fs.realpath (isaacs, Issue #167)
+
+* Rewrite libeio After callback to use req->result instead of req->errorno
+ for error checking (Micheil Smith)
+
+* Removed range read optimization as it doesn't work with libeio. (Chandra
+ Sekar S)
+
+* Make writes to process.env update the real environment (Ben Noordhuis)
+
+* Set FD_CLOEXEC flag on stdio FDs before spawning. (Guillaume Tuton)
+
+* Upgrade http-parser
+
+* Readline: Switch \n with \r\n for all strings printed out.
+ Simplify displayPrompt
+
+* Fix segfault on test-crypto
+
+* 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. (isaacs)
+
+* Fix OS::GetExecutablePath for platform_none shouldn't return garbage.
+
+
+2010.10.24, Version 0.2.4, 428a67012158eb2ff478a0dc58336e85e4c6399a
* Add --eval to command line options (TJ Holowaychuk)
diff --git a/doc/api_header.html b/doc/api_header.html
index c94f09ba1e5..fdd34c6c87f 100644
--- a/doc/api_header.html
+++ b/doc/api_header.html
@@ -295,7 +295,7 @@
<body>
<div id="toc">
- <div id="toctitle">Node v0.2.4</div>
+ <div id="toctitle">Node v0.2.5</div>
<noscript>JavaScript must be enabled in your browser to display the table of contents.</noscript>
</div>
<div id='man'>
diff --git a/doc/index.html b/doc/index.html
index ea5f35475f1..3517dce61d7 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -89,13 +89,13 @@ net.createServer(function (socket) {
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- Stable: 2010.10.24
- <a href="http://nodejs.org/dist/node-v0.2.4.tar.gz">node-v0.2.4.tar.gz</a>
+ Stable: 2010.11.16
+ <a href="http://nodejs.org/dist/node-v0.2.5.tar.gz">node-v0.2.5.tar.gz</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>
+ Unstable: 2010.11.16
+ <a href="http://nodejs.org/dist/node-v0.3.1.tar.gz">node-v0.3.1.tar.gz</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 308214a475b..87b592cc848 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -6,7 +6,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 2
-#define NODE_PATCH_VERSION 4
+#define NODE_PATCH_VERSION 5
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)