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-31 06:58:19 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-12-31 08:00:01 +0300
commit6f8d78d84b53c9c59546e5e32a32db0a321c4796 (patch)
tree34a47de349e64963492c197b4ab017ca75194829
parentae91603dd7ef4ed31a24553dcc7a0c6451501f1e (diff)
Bump version to v0.2.6v0.2.6
-rw-r--r--AUTHORS3
-rw-r--r--ChangeLog23
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html8
-rw-r--r--src/node_version.h2
5 files changed, 31 insertions, 7 deletions
diff --git a/AUTHORS b/AUTHORS
index 49f5edbd233..3de010bfa95 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -128,3 +128,6 @@ Nathan Rajlich <nathan@tootallnate.net>
Tom Hughes <tom.hughes@palm.com>
Vitali Lovich <vitali.lovich@palm.com>
Guillaume Tuton <guillaume@tuton.fr>
+Jeremy Martin <jmar777@gmail.com>
+Theo Schlossnagle <jesus@omniti.com>
+
diff --git a/ChangeLog b/ChangeLog
index 7a63c6c3f86..7bad5dae132 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,25 @@
-2010.11.16, Version 0.2.5
+2010.12.30, Version 0.2.6
+
+* Make sure raw mode is disabled when exiting a terminal-based REPL.
+ (Brian White)
+
+* Fix OpenSSL SSL_library_init function check on OpenBSD.
+ (Brian White)
+
+* Fix test-http-allow-req-after-204-res.js
+
+* Fix length of arguments emitted by EventEmitter (Jeremy Martin)
+
+* Fix unhandled ECONNABORTED (Theo Schlossnagle)
+
+* Default to gcc for V8 build on Solaris (Trent Mick)
+
+* Fix various memory leaks (Tom Hughes)
+
+* Apple's threaded write()s bug (Jorge Chamorro Bieling)
+
+
+2010.11.16, Version 0.2.5, 74a1fc334e486683d6da02fd918725d246ffc273
* Add ref to buffer during fs.write and fs.read. Sometimes buffers
would be GCed before making it to the thread pool.
diff --git a/doc/api_header.html b/doc/api_header.html
index fdd34c6c87f..7da4b39b04f 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.5</div>
+ <div id="toctitle">Node v0.2.6</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 3517dce61d7..1fa241e55c2 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.11.16
- <a href="http://nodejs.org/dist/node-v0.2.5.tar.gz">node-v0.2.5.tar.gz</a>
+ Stable: 2010.12.30
+ <a href="http://nodejs.org/dist/node-v0.2.6.tar.gz">node-v0.2.6.tar.gz</a>
</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>
+ Unstable: 2010.12.16
+ <a href="http://nodejs.org/dist/node-v0.3.2.tar.gz">node-v0.3.2.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 87b592cc848..a8cdbdf35bd 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 5
+#define NODE_PATCH_VERSION 6
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)