bump version v0.1.23
authorRyan Dahl <ry@tinyclouds.org>
Tue, 22 Dec 2009 19:31:45 +0000 (20:31 +0100)
committerRyan Dahl <ry@tinyclouds.org>
Tue, 22 Dec 2009 19:31:45 +0000 (20:31 +0100)
ChangeLog
doc/api.txt
doc/index.html
wscript

index 6c1fbf080399436edf4d592a25c35f90d4a7c28c..bd4267c6f279f4cfec074d553ee858f04d924a3a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,13 @@
-2009.12.19, Version 0.1.22
+2009.12.22, Version 0.1.23
+
+  * Bugfix: require("../blah") issues (isaacs)
+
+  * Bugfix: posix.cat (Jonas Pfenniger)
+
+  * Do not pause request for multipart parsing (Felix Geisendörfer)
+
+
+2009.12.19, Version 0.1.22, a2d809fe902f6c4102dba8f2e3e9551aad137c0f
 
   * Bugfix: child modules get wrong id with "index.js" (isaacs)
 
index 52da86e4b50ab2150a5146a35b5367958aa33ca4..0013920a2599e80f28707ff5aef952d13ff7a892 100644 (file)
@@ -1,7 +1,7 @@
 NODE(1)
 =======
 Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.22, 2009.12.19
+Version, 0.1.23, 2009.12.22
 
 
 == NAME
index 17773e5381de4fa14ec2bb2b9068856a11d4763b..594c65cdf2fe48c0557b212749b65218b6fa06d2 100644 (file)
@@ -99,7 +99,7 @@ server.listen(7000, "localhost");</pre>
       <p>
         2009.12.19
         <a
-        href="http://s3.amazonaws.com/four.livejournal/20091219/node-v0.1.22.tar.gz">node-v0.1.22.tar.gz</a>
+        href="http://s3.amazonaws.com/four.livejournal/20091222/node-v0.1.23.tar.gz">node-v0.1.23.tar.gz</a>
       </p>
 
       <h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index 599e94bb065db39f7fc15fc8dba6e320cd62964f..03341b74d9682d81f0c30653c64b285752948998 100644 (file)
--- 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.22"
+VERSION="0.1.23"
 APPNAME="node.js"
 
 import js2c