Skip to content

Commit 428a670

Browse files
committed
bump version to 0.2.4
1 parent f7bc7fb commit 428a670

File tree

6 files changed

+39
-6
lines changed

6 files changed

+39
-6
lines changed

AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,3 +123,7 @@ Tobie Langel <tobie.langel@gmail.com>
123123
Tony Metzidis <tonym@tonym.us>
124124
Jorge Chamorro Bieling <jorge@jorgechamorro.com>
125125
Evan Larkin <evan.larkin.il.com>
126+
Joshua Peek <josh@joshpeek.com>
127+
Nathan Rajlich <nathan@tootallnate.net>
128+
Tom Hughes <tom.hughes@palm.com>
129+
Vitali Lovich <vitali.lovich@palm.com>

ChangeLog

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,28 @@
1-
2010.10.02, Version 0.2.3
1+
2010.10.24, Version 0.2.4
2+
3+
* Add --eval to command line options (TJ Holowaychuk)
4+
5+
* net fixes
6+
- TCP clients buffer writes before connection
7+
- Don't flush net writeQueue on end() if its still connecting
8+
(Joshua Peek)
9+
- Do not spin on aceept() with EMFILE
10+
11+
* Add --max-stack-size flag. (Tom Hughes)
12+
13+
* Fixes to child_process.exec (timeouts and proper termination)
14+
Default to SIGTERM instead of SIGKILL.
15+
16+
* Add signal handlers so we clean up before exiting. (Tom Hughes)
17+
18+
* Fix parsing of linux memory (Vitali Lovich)
19+
20+
* http-parser: Allow whitespace in the 'Content-Length' header.
21+
(Nathan Rajlich)
22+
23+
* Add flag to disable colors in REPL
24+
25+
2010.10.02, Version 0.2.3, dc103ae020ecd6182aa2adb482ac72ea944130ee
226

327
* Fix require in REPL (bug introduced in v0.2.2)
428

doc/api_header.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/index.html

Lines changed: 7 additions & 2 deletions
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.10.02
93-
<a href="http://nodejs.org/dist/node-v0.2.3.tar.gz">node-v0.2.3.tar.gz</a>
92+
Stable: 2010.10.24
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#define NODE_MAJOR_VERSION 0
88
#define NODE_MINOR_VERSION 2
9-
#define NODE_PATCH_VERSION 3
9+
#define NODE_PATCH_VERSION 4
1010

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

tools/updateAuthors.awk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# git log --pretty='format:%ae %an' | tail -r | awk -f updateAuthors.awk
1+
# git log --pretty='format:%ae %an' | tac | awk -f tools/updateAuthors.awk
22
{
33
if (!x[$1]++) {
44
#print $0

0 commit comments

Comments
 (0)