From 9283e134e558900ba89d9a33c18a9bdedab07cb9 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 20 Aug 2010 01:52:58 -0700 Subject: [PATCH] bump version --- AUTHORS | 4 ++++ ChangeLog | 19 +++++++++++++++++++ doc/api_header.html | 2 +- doc/index.html | 4 ++-- src/node_version.h | 4 ++-- 5 files changed, 28 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index 8634ffb30e0911..aab9d2431414b2 100644 --- a/AUTHORS +++ b/AUTHORS @@ -110,3 +110,7 @@ Andrew Naylor Benjamin Kramer Danny Coates Nick Stenning +Bert Belder +Trent Mick +Fedor Indutny +Illarionov Oleg diff --git a/ChangeLog b/ChangeLog index 79694bfebbca46..8834a23c66eae5 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 cc55733842a025..c8ca17eaf3c808 100644 --- a/doc/api_header.html +++ b/doc/api_header.html @@ -295,7 +295,7 @@
-
Node v0.1.104
+
Node v0.2.0
diff --git a/doc/index.html b/doc/index.html index c3300ad757b7b4..74c50a704a1b67 100644 --- a/doc/index.html +++ b/doc/index.html @@ -89,8 +89,8 @@

Download

git repo

- 2010.08.13 - node-v0.1.104.tar.gz + 2010.08.20 + node-v0.2.0.tar.gz

Historical: versions, docs

diff --git a/src/node_version.h b/src/node_version.h index ca677baf2448e1..8d490ab2cd5d46 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)