diff --git a/AUTHORS b/AUTHORS index aab9d2431414b2..030b2006a87250 100644 --- a/AUTHORS +++ b/AUTHORS @@ -114,3 +114,24 @@ Bert Belder Trent Mick Fedor Indutny Illarionov Oleg +Aria Stewart +Johan Euphrosine +Russell Haering +Bradley Meck +Tobie Langel +Tony Metzidis +Mark Nottingham +Sam Stephenson +Jorge Chamorro Bieling +Evan Larkin +Sean Coates +Tom Hughes +Joshua Peek +Nathan Rajlich +Peteris Krumins +AJ ONeal +Sami Samhuri +Nikhil Marathe +Vitali Lovich +Stéphan Kochen + diff --git a/ChangeLog b/ChangeLog index 8834a23c66eae5..0068155dc92539 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,70 @@ -2010.08.20, Version 0.2.0 +2010.10.23, Version 0.3.0 (unstable) + +* Bugfix: Do not spin on aceept() with EMFILE + +* Improvments to readline.js (Trent Mick, Johan Euphrosine, Brian White) + +* Safe constructors (missing 'new' doesn't segfault) + +* Fix process.nextTick so thrown errors don't confuse it. + (Benjamin Thomas) + +* Allow Strings for ports on net.Server.listen (Bradley Meck) + +* fs bugfixes (Tj Holowaychuk, Tobie Langel, Marco Rogers, isaacs) + +* http bug fixes (Fedor Indutny, Mikeal Rogers) + +* Faster buffers; breaks C++ API (Tim-Smart, Stéphan Kochen) + +* crypto, tls improvements (Paul Querna) + +* Add lfs flags to node addon script + +* Simpler querystring parsing; breaks API (Peter Griess) + +* HTTP trailers (Mark Nottingham) + +* http 100-continue support (Mark Nottingham) + +* Module system simplifications (Herbert Vojčík, isaacs, Tim-Smart) + - remove require.async + - remove registerExtension, add .extensions + - expose require.resolve + - expose require.cache + - require looks in node_modules folders + +* Add --eval command line option (TJ Holowaychuk) + +* Commas last in sys.inspect + +* Constatnts moved from process object to require('constants') + +* Fix parsing of linux memory (Vitali Lovich) + +* inspect shows function names (Jorge Chamorro Bieling) + +* uncaughtException corner cases (Felix Geisendörfer) + +* TCP clients now buffer writes before connection + +* Rename sys module to 'util' (Micheil Smith) + +* Properly set stdio handlers to blocking on SIGTERM and SIGINT + (Tom Hughes) + +* Add destroy methods to HTTP messages + +* base64 improvements (isaacs, Jorge Chamorro Bieling) + +* API for defining REPL commands (Sami Samhuri) + +* child_process.exec timeout fix (Aaron Heckmann) + +* Upgrade V8 to 2.5.1, Libev to 4.00, libeio, http-parser + + +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 c8ca17eaf3c808..13f2da9a12a179 100644 --- a/doc/api_header.html +++ b/doc/api_header.html @@ -295,7 +295,7 @@
-
Node v0.2.0
+
Node v0.3.0
diff --git a/doc/index.html b/doc/index.html index 74c50a704a1b67..7a6c2d78a84ec3 100644 --- a/doc/index.html +++ b/doc/index.html @@ -89,8 +89,13 @@

Download

git repo

- 2010.08.20 - node-v0.2.0.tar.gz + Stable: 2010.10.23 + node-v0.2.4.tar.gz +

+ +

+ Unstable: 2010.10.23 + node-v0.3.0.tar.gz

Historical: versions, docs

diff --git a/src/node_version.h b/src/node_version.h index bb0cc26ace130e..de9cfb49e13f1a 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -7,7 +7,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 3 #define NODE_PATCH_VERSION 0 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)