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

Commit 1582cfe

Browse files
committed
bump version to 0.3.0
1 parent 477df1a commit 1582cfe

File tree

5 files changed

+97
-5
lines changed

5 files changed

+97
-5
lines changed

AUTHORS

+21
Original file line numberDiff line numberDiff line change
@@ -114,3 +114,24 @@ Bert Belder <[email protected]>
114114
Trent Mick <[email protected]>
115115
Fedor Indutny <[email protected]>
116116
Illarionov Oleg <[email protected]>
117+
Aria Stewart <[email protected]>
118+
Johan Euphrosine <[email protected]>
119+
Russell Haering <[email protected]>
120+
Bradley Meck <[email protected]>
121+
Tobie Langel <[email protected]>
122+
Tony Metzidis <[email protected]>
123+
Mark Nottingham <[email protected]>
124+
Sam Stephenson <[email protected]>
125+
Jorge Chamorro Bieling <[email protected]>
126+
Evan Larkin <evan.larkin.il.com>
127+
Sean Coates <[email protected]>
128+
Tom Hughes <[email protected]>
129+
Joshua Peek <[email protected]>
130+
Nathan Rajlich <[email protected]>
131+
Peteris Krumins <[email protected]>
132+
133+
Sami Samhuri <[email protected]>
134+
Nikhil Marathe <[email protected]>
135+
Vitali Lovich <[email protected]>
136+
Stéphan Kochen <[email protected]>
137+

ChangeLog

+67-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,70 @@
1-
2010.08.20, Version 0.2.0
1+
2010.10.23, Version 0.3.0 (unstable)
2+
3+
* Bugfix: Do not spin on aceept() with EMFILE
4+
5+
* Improvments to readline.js (Trent Mick, Johan Euphrosine, Brian White)
6+
7+
* Safe constructors (missing 'new' doesn't segfault)
8+
9+
* Fix process.nextTick so thrown errors don't confuse it.
10+
(Benjamin Thomas)
11+
12+
* Allow Strings for ports on net.Server.listen (Bradley Meck)
13+
14+
* fs bugfixes (Tj Holowaychuk, Tobie Langel, Marco Rogers, isaacs)
15+
16+
* http bug fixes (Fedor Indutny, Mikeal Rogers)
17+
18+
* Faster buffers; breaks C++ API (Tim-Smart, Stéphan Kochen)
19+
20+
* crypto, tls improvements (Paul Querna)
21+
22+
* Add lfs flags to node addon script
23+
24+
* Simpler querystring parsing; breaks API (Peter Griess)
25+
26+
* HTTP trailers (Mark Nottingham)
27+
28+
* http 100-continue support (Mark Nottingham)
29+
30+
* Module system simplifications (Herbert Vojčík, isaacs, Tim-Smart)
31+
- remove require.async
32+
- remove registerExtension, add .extensions
33+
- expose require.resolve
34+
- expose require.cache
35+
- require looks in node_modules folders
36+
37+
* Add --eval command line option (TJ Holowaychuk)
38+
39+
* Commas last in sys.inspect
40+
41+
* Constatnts moved from process object to require('constants')
42+
43+
* Fix parsing of linux memory (Vitali Lovich)
44+
45+
* inspect shows function names (Jorge Chamorro Bieling)
46+
47+
* uncaughtException corner cases (Felix Geisendörfer)
48+
49+
* TCP clients now buffer writes before connection
50+
51+
* Rename sys module to 'util' (Micheil Smith)
52+
53+
* Properly set stdio handlers to blocking on SIGTERM and SIGINT
54+
(Tom Hughes)
55+
56+
* Add destroy methods to HTTP messages
57+
58+
* base64 improvements (isaacs, Jorge Chamorro Bieling)
59+
60+
* API for defining REPL commands (Sami Samhuri)
61+
62+
* child_process.exec timeout fix (Aaron Heckmann)
63+
64+
* Upgrade V8 to 2.5.1, Libev to 4.00, libeio, http-parser
65+
66+
67+
2010.08.20, Version 0.2.0, 9283e134e558900ba89d9a33c18a9bdedab07cb9
268

369
* process.title support for FreeBSD, Macintosh, Linux
470

doc/api_header.html

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/index.html

+7-2
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,13 @@ <h2 id="download">Download</h2>
8989
<a href="http://github.com/ry/node/tree/master">git repo</a>
9090
</p>
9191
<p>
92-
2010.08.20
93-
<a href="http://nodejs.org/dist/node-v0.2.0.tar.gz">node-v0.2.0.tar.gz</a>
92+
Stable: 2010.10.23
93+
<a href="http://nodejs.org/dist/node-v0.2.4.tar.gz">node-v0.2.4.tar.gz</a>
94+
</p>
95+
96+
<p>
97+
Unstable: 2010.10.23
98+
<a href="http://nodejs.org/dist/node-v0.3.0.tar.gz">node-v0.3.0.tar.gz</a>
9499
</p>
95100

96101
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#define NODE_MAJOR_VERSION 0
88
#define NODE_MINOR_VERSION 3
99
#define NODE_PATCH_VERSION 0
10-
#define NODE_VERSION_IS_RELEASE 0
10+
#define NODE_VERSION_IS_RELEASE 1
1111

1212
#ifndef NODE_STRINGIFY
1313
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)