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-08-20 12:52:58 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-08-20 12:53:08 +0400
commit9283e134e558900ba89d9a33c18a9bdedab07cb9 (patch)
treee628a4a349e7a9998affcde99ffece8c39cf0b3d
parent51ecba8da9c8c9d974be9c01370c1bdd37031b1f (diff)
bump versionv0.2.0
-rw-r--r--AUTHORS4
-rw-r--r--ChangeLog19
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html4
-rw-r--r--src/node_version.h4
5 files changed, 28 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index 8634ffb30e0..aab9d243141 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -110,3 +110,7 @@ Andrew Naylor <argon@mkbot.net>
Benjamin Kramer <benny.kra@gmail.com>
Danny Coates <dannycoates@gmail.com>
Nick Stenning <nick@whiteink.com>
+Bert Belder <bertbelder@gmail.com>
+Trent Mick <trentm@gmail.com>
+Fedor Indutny <fedor.indutny@gmail.com>
+Illarionov Oleg <oleg@emby.ru>
diff --git a/ChangeLog b/ChangeLog
index 79694bfebbc..8834a23c66e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,22 @@
+2010.08.20, Version 0.2.0
+
+* process.title support for FreeBSD, Macintosh, Linux
+
+* Fix OpenSSL 100% CPU usage on error (Illarionov Oleg)
+
+* Implement net.Server.maxConnections.
+
+* Fix process.platform, add process.version.
+
+* Add --without-snapshot configure option.
+
+* Readline REPL improvements (Trent Mick)
+
+* Bug fixes.
+
+* Upgrade V8 to 2.3.8
+
+
2010.08.13, Version 0.1.104
* Various bug fixes (console, querystring, require)
diff --git a/doc/api_header.html b/doc/api_header.html
index cc55733842a..c8ca17eaf3c 100644
--- a/doc/api_header.html
+++ b/doc/api_header.html
@@ -295,7 +295,7 @@
<body>
<div id="toc">
- <div id="toctitle">Node v0.1.104</div>
+ <div id="toctitle">Node v0.2.0</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 c3300ad757b..74c50a704a1 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.13
- <a href="http://nodejs.org/dist/node-v0.1.104.tar.gz">node-v0.1.104.tar.gz</a>
+ 2010.08.20
+ <a href="http://nodejs.org/dist/node-v0.2.0.tar.gz">node-v0.2.0.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 ca677baf244..8d490ab2cd5 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -5,8 +5,8 @@
#define NODE_VERSION_H
#define NODE_MAJOR_VERSION 0
-#define NODE_MINOR_VERSION 1
-#define NODE_PATCH_VERSION 104
+#define NODE_MINOR_VERSION 2
+#define NODE_PATCH_VERSION 0
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)