Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Oct 23, 2010
1 parent 477df1a commit 1582cfe
Show file tree
Hide file tree
Showing 5 changed files with 97 additions and 5 deletions.
21 changes: 21 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,24 @@ Bert Belder <[email protected]>
Trent Mick <[email protected]>
Fedor Indutny <[email protected]>
Illarionov Oleg <[email protected]>
Aria Stewart <[email protected]>
Johan Euphrosine <[email protected]>
Russell Haering <[email protected]>
Bradley Meck <[email protected]>
Tobie Langel <[email protected]>
Tony Metzidis <[email protected]>
Mark Nottingham <[email protected]>
Sam Stephenson <[email protected]>
Jorge Chamorro Bieling <[email protected]>
Evan Larkin <evan.larkin.il.com>
Sean Coates <[email protected]>
Tom Hughes <[email protected]>
Joshua Peek <[email protected]>
Nathan Rajlich <[email protected]>
Peteris Krumins <[email protected]>
AJ ONeal <[email protected]>
Sami Samhuri <[email protected]>
Nikhil Marathe <[email protected]>
Vitali Lovich <[email protected]>
Stéphan Kochen <[email protected]>

68 changes: 67 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -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

This comment has been minimized.

Copy link
@TooTallNate

TooTallNate Oct 24, 2010

aceept -> accept


* 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')

This comment has been minimized.

Copy link
@TooTallNate

TooTallNate Oct 24, 2010

Constatnts -> 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

Expand Down
2 changes: 1 addition & 1 deletion doc/api_header.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,13 @@ <h2 id="download">Download</h2>
<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>
Stable: 2010.10.23
<a href="http://nodejs.org/dist/node-v0.2.4.tar.gz">node-v0.2.4.tar.gz</a>
</p>

<p>
Unstable: 2010.10.23
<a href="http://nodejs.org/dist/node-v0.3.0.tar.gz">node-v0.3.0.tar.gz</a>
</p>

<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
Expand Down
2 changes: 1 addition & 1 deletion src/node_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1582cfe

Please sign in to comment.