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-10-02 03:22:04 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-10-02 17:05:56 +0400
commitdc103ae020ecd6182aa2adb482ac72ea944130ee (patch)
treeb909f6d9ae47585075ee1da4bbc5995e45910360
parentfea3919d1bee7e9712aea62574d35adf0ff84027 (diff)
Bump version to v0.2.3v0.2.3
-rw-r--r--AUTHORS2
-rw-r--r--ChangeLog27
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html4
-rw-r--r--src/node_version.h2
5 files changed, 28 insertions, 9 deletions
diff --git a/AUTHORS b/AUTHORS
index 9b948ae91cc..318e47b712b 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -121,3 +121,5 @@ Russell Haering <russellhaering@gmail.com>
Bradley Meck <bradley.meck@gmail.com>
Tobie Langel <tobie.langel@gmail.com>
Tony Metzidis <tonym@tonym.us>
+Jorge Chamorro Bieling <jorge@jorgechamorro.com>
+Evan Larkin <evan.larkin.il.com>
diff --git a/ChangeLog b/ChangeLog
index f2356148bee..11fed7f5abc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,21 @@
-2010.09.17, Version 0.2.2
+2010.10.02, Version 0.2.3
+
+* Fix require in REPL (bug introduced in v0.2.2)
+
+* Pass correct message in client HTTP upgrade event.
+ (Fedor Indutny)
+
+* Show function names in sys.inspect (Jorge Chamorro Bieling)
+
+* In HTTP, close connection on the "connection:close" header.
+ (Mikeal Rogers)
+
+* fs.ReadStream bug fixes (Tj Holowaychuk, Evan Larkin, Marco Rogers)
+
+* Fix zero length buffer bug for http res.end()
+
+
+2010.09.17, Version 0.2.2, 7bf46bc9808f4db98f1cf177d58a6ecf3a50b65d
* REPL improvements (Trent Mick)
@@ -27,7 +44,7 @@
* Fixes for NODE_MODULE_CONTEXTS=1 (Herbert Vojčík)
-* Expose fingerproint from getPeerCertificate (Paul Querna)
+* Expose fingerproint from getPeerCertificate (Paul Querna)
* API: forceClose -> destroy for WriteStreams
@@ -150,7 +167,7 @@
* Upgrade http-parser, V8 to 2.2.21
-2010.06.21, Version 0.1.99, a620b7298f68f68a855306437a3b60b650d61d78
+2010.06.21, Version 0.1.99, a620b7298f68f68a855306437a3b60b650d61d78
* Datagram sockets (Paul Querna)
@@ -256,7 +273,7 @@
2010.05.06, Version 0.1.94, f711d5343b29d1e72e87107315708e40951a7826
-* Look in /usr/local/lib/node for modules, so that there's a way
+* Look in /usr/local/lib/node for modules, so that there's a way
to install modules globally (Issac Schlueter)
* SSL improvements (Rhys Jones, Paulo Matias)
@@ -276,7 +293,7 @@
* Bugfix: destroy() instead of end() http connection at end of
pipeline
-* Bugfix: http.Client may be prematurely released back to the
+* Bugfix: http.Client may be prematurely released back to the
free pool. (Thomas Lee)
* Upgrade V8 to 2.2.8
diff --git a/doc/api_header.html b/doc/api_header.html
index a66d603fc2a..773a841d77d 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.2</div>
+ <div id="toctitle">Node v0.2.3</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 e07317ad0cb..ce1ceb384e9 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -89,8 +89,8 @@ net.createServer(function (socket) {
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2010.09.17
- <a href="http://nodejs.org/dist/node-v0.2.2.tar.gz">node-v0.2.2.tar.gz</a>
+ 2010.10.02
+ <a href="http://nodejs.org/dist/node-v0.2.3.tar.gz">node-v0.2.3.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 8f5e59f22d1..547f5bd9971 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 2
+#define NODE_PATCH_VERSION 3
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)