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.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Oct 24, 2010
1 parent f7bc7fb commit 428a670
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 6 deletions.
4 changes: 4 additions & 0 deletions AUTHORS
Expand Up @@ -123,3 +123,7 @@ Tobie Langel <tobie.langel@gmail.com>
Tony Metzidis <tonym@tonym.us>
Jorge Chamorro Bieling <jorge@jorgechamorro.com>
Evan Larkin <evan.larkin.il.com>
Joshua Peek <josh@joshpeek.com>
Nathan Rajlich <nathan@tootallnate.net>
Tom Hughes <tom.hughes@palm.com>
Vitali Lovich <vitali.lovich@palm.com>
26 changes: 25 additions & 1 deletion ChangeLog
@@ -1,4 +1,28 @@
2010.10.02, Version 0.2.3
2010.10.24, Version 0.2.4

* Add --eval to command line options (TJ Holowaychuk)

* net fixes
- TCP clients buffer writes before connection
- Don't flush net writeQueue on end() if its still connecting
(Joshua Peek)
- Do not spin on aceept() with EMFILE

* Add --max-stack-size flag. (Tom Hughes)

* Fixes to child_process.exec (timeouts and proper termination)
Default to SIGTERM instead of SIGKILL.

* Add signal handlers so we clean up before exiting. (Tom Hughes)

* Fix parsing of linux memory (Vitali Lovich)

* http-parser: Allow whitespace in the 'Content-Length' header.
(Nathan Rajlich)

* Add flag to disable colors in REPL

2010.10.02, Version 0.2.3, dc103ae020ecd6182aa2adb482ac72ea944130ee

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

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
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.10.02
<a href="http://nodejs.org/dist/node-v0.2.3.tar.gz">node-v0.2.3.tar.gz</a>
Stable: 2010.10.24
<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
Expand Up @@ -6,7 +6,7 @@

#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 2
#define NODE_PATCH_VERSION 3
#define NODE_PATCH_VERSION 4

#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
Expand Down
2 changes: 1 addition & 1 deletion tools/updateAuthors.awk
@@ -1,4 +1,4 @@
# git log --pretty='format:%ae %an' | tail -r | awk -f updateAuthors.awk
# git log --pretty='format:%ae %an' | tac | awk -f tools/updateAuthors.awk
{
if (!x[$1]++) {
#print $0
Expand Down

0 comments on commit 428a670

Please sign in to comment.