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-22 22:31:45 +0300
committerRyan Dahl <ry@tinyclouds.org>2009-12-22 22:31:45 +0300
commitf91e347eeeeac1a8bd6a7b462df0321b60f3affc (patch)
treee0947673dd4a9565d661cdab3cf8bbbe39f8628a
parent5de04dafc6c21cbfedc0f89859a21066e2741295 (diff)
bump versionv0.1.23
-rw-r--r--ChangeLog11
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html2
-rw-r--r--wscript2
4 files changed, 13 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 6c1fbf08039..bd4267c6f27 100644
--- 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)
diff --git a/doc/api.txt b/doc/api.txt
index 52da86e4b50..0013920a259 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -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
diff --git a/doc/index.html b/doc/index.html
index 17773e5381d..594c65cdf2f 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -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 599e94bb065..03341b74d96 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.22"
+VERSION="0.1.23"
APPNAME="node.js"
import js2c