Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2009-12-31 11:30:53 +0300
committerRyan Dahl <ry@tinyclouds.org>2009-12-31 11:30:53 +0300
commit642c2773a7eb2034f597af1cd404b9e086b59632 (patch)
tree94a52241aee44c7a504905571f67ec2fb1fbf358
parent9553503be5b9efa06cefd5c813fe7b861cba495b (diff)
bump versionv0.1.24
-rw-r--r--ChangeLog16
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
4 files changed, 19 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index bd4267c6f27..f53e2b80cdc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,18 @@
-2009.12.22, Version 0.1.23
+2009.12.31, Version 0.1.24
+
+ * Bugfix: don't chunk responses to HTTP/1.0 clients, even if
+ they send Connection: Keep-Alive (e.g. wget)
+
+ * Bugfix: libeio race condition
+
+ * Bugfix: Don't segfault on unknown http method
+
+ * Simplify exception reporting
+
+ * Upgrade V8 to 2.0.5.4
+
+
+2009.12.22, Version 0.1.23, f91e347eeeeac1a8bd6a7b462df0321b60f3affc
* Bugfix: require("../blah") issues (isaacs)
diff --git a/doc/api.txt b/doc/api.txt
index 0013920a259..6902a495c87 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.23, 2009.12.22
+Version, 0.1.24, 2009.12.31
== NAME
diff --git a/doc/index.html b/doc/index.html
index 594c65cdf2f..3803b3cce6c 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -97,9 +97,9 @@ server.listen(7000, "localhost");</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2009.12.19
+ 2009.12.31
<a
- href="http://s3.amazonaws.com/four.livejournal/20091222/node-v0.1.23.tar.gz">node-v0.1.23.tar.gz</a>
+ href="http://s3.amazonaws.com/four.livejournal/20091231/node-v0.1.24.tar.gz">node-v0.1.24.tar.gz</a>
</p>
<h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index 03341b74d96..594647dce0e 100644
--- a/wscript
+++ b/wscript
@@ -7,7 +7,7 @@ from os.path import join, dirname, abspath
from logging import fatal
cwd = os.getcwd()
-VERSION="0.1.23"
+VERSION="0.1.24"
APPNAME="node.js"
import js2c