bump version v0.1.22
authorRyan Dahl <ry@tinyclouds.org>
Sat, 19 Dec 2009 00:24:59 +0000 (01:24 +0100)
committerRyan Dahl <ry@tinyclouds.org>
Sat, 19 Dec 2009 00:24:59 +0000 (01:24 +0100)
ChangeLog
doc/api.txt
doc/index.html
wscript

index 7cba74c..6c1fbf0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,32 @@
-2009.12.06, Version 0.1.21
+2009.12.19, Version 0.1.22
+
+  * Bugfix: child modules get wrong id with "index.js" (isaacs)
+
+  * Bugfix: require("../foo") cycles (isaacs)
+
+  * Bugfix: require() should throw error if module does.
+
+  * New URI parser stolen from Narwhal (isaacs)
+
+  * Bugfix: correctly check kqueue and epoll. (Rasmus Andersson)
+
+  * Upgrade WAF to 1.5.10 
+
+  * Bugfix: posix.statSync() was crashing
+
+  * Statically define string symbols for performance improvement
+
+  * Bugfix: ARGV[0] weirdness
+
+  * Added superCtor to ctor.super_ instead superCtor.prototype.
+    (Johan Dahlberg)
+
+  * http-parser supports webdav methods
+
+  * API: http.Client.prototype.request() (Christopher Lenz)
+
+
+2009.12.06, Version 0.1.21, c6affb64f96a403a14d20035e7fbd6d0ce089db5
 
   * Feature: Add HTTP client TLS support (Rhys Jones)
 
index 84ee58c..52da86e 100644 (file)
@@ -1,7 +1,7 @@
 NODE(1)
 =======
 Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.21, 2009.12.06
+Version, 0.1.22, 2009.12.19
 
 
 == NAME
index 49b9bc5..17773e5 100644 (file)
@@ -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.06
+        2009.12.19
         <a
-        href="http://s3.amazonaws.com/four.livejournal/20091206/node-v0.1.21.tar.gz">node-v0.1.21.tar.gz</a>
+        href="http://s3.amazonaws.com/four.livejournal/20091219/node-v0.1.22.tar.gz">node-v0.1.22.tar.gz</a>
       </p>
 
       <h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index bc918bb..599e94b 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.21"
+VERSION="0.1.22"
 APPNAME="node.js"
 
 import js2c