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-09-11 00:52:18 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-09-11 00:52:33 +0400
commitda235fa12c208fc8243600e128db2c9b55624c5c (patch)
tree13b05f2e16b23113afb2b72c33cfddb6d517fa66
parent92fb664bfce0a8b65e7303de19b88cf9b02a9fba (diff)
bump version to v0.2.1v0.2.1
-rw-r--r--ChangeLog27
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html4
-rw-r--r--src/node_version.h2
4 files changed, 30 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 8834a23c66e..63243a5d340 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,29 @@
-2010.08.20, Version 0.2.0
+2010.09.10, Version 0.2.1
+
+* REPL improvements (Johan Euphrosine, Brian White)
+
+* nextTick bug fixes (Benjamin Thomas, Felix Geisendörfer,
+ Trent Mick)
+
+* fs module bug fixes (Russell Haering, Marco Rogers, Tobie Langel,
+ Isaac Schlueter)
+
+* Build script change for OpenEmbedded.
+
+* Most constrctuors work without 'new' now.
+
+* Allow Strings for ports on net.Server.listen (Bradley Meck)
+
+* setInterval(cb, 0) loops infinitely
+
+* Fixes for NODE_MODULE_CONTEXTS=1 (Herbert Vojčík)
+
+* Expose fingerproint from getPeerCertificate (Paul Querna)
+
+* API: forceClose -> destroy for WriteStreams
+
+
+2010.08.20, Version 0.2.0, 9283e134e558900ba89d9a33c18a9bdedab07cb9
* process.title support for FreeBSD, Macintosh, Linux
diff --git a/doc/api_header.html b/doc/api_header.html
index c8ca17eaf3c..131fb6a0059 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.0</div>
+ <div id="toctitle">Node v0.2.1</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 74c50a704a1..2f21d2a99b6 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.08.20
- <a href="http://nodejs.org/dist/node-v0.2.0.tar.gz">node-v0.2.0.tar.gz</a>
+ 2010.09.10
+ <a href="http://nodejs.org/dist/node-v0.2.1.tar.gz">node-v0.2.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 8d490ab2cd5..925870a2998 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 0
+#define NODE_PATCH_VERSION 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)