summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS4
-rw-r--r--ChangeLog26
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html9
-rw-r--r--src/node_version.h2
-rw-r--r--tools/updateAuthors.awk2
6 files changed, 39 insertions, 6 deletions
diff --git a/AUTHORS b/AUTHORS
index 318e47b71..cd230cf88 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -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>
diff --git a/ChangeLog b/ChangeLog
index 11fed7f5a..32e6bb484 100644
--- a/ChangeLog
+++ b/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)
diff --git a/doc/api_header.html b/doc/api_header.html
index 773a841d7..c94f09ba1 100644
--- a/doc/api_header.html
+++ b/doc/api_header.html
@@ -295,7 +295,7 @@
<body>
<div id="toc">
- <div id="toctitle">Node v0.2.3</div>
+ <div id="toctitle">Node v0.2.4</div>
<noscript>JavaScript must be enabled in your browser to display the table of contents.</noscript>
</div>
<div id='man'>
diff --git a/doc/index.html b/doc/index.html
index ce1ceb384..ea5f35475 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -89,8 +89,13 @@ net.createServer(function (socket) {
<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>
diff --git a/src/node_version.h b/src/node_version.h
index 547f5bd99..308214a47 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -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)
diff --git a/tools/updateAuthors.awk b/tools/updateAuthors.awk
index ad9335735..fb7e3b244 100644
--- a/tools/updateAuthors.awk
+++ b/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