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-19 03:24:59 +0300
committerRyan Dahl <ry@tinyclouds.org>2009-12-19 03:24:59 +0300
commita2d809fe902f6c4102dba8f2e3e9551aad137c0f (patch)
treeabde5b0750960e3e998eac4ffac10a05a0c8eed9
parenta98afdfb2f05d163b2d4145f2d98c4a7ffd13bfd (diff)
bump versionv0.1.22
-rw-r--r--ChangeLog30
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
4 files changed, 33 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 7cba74cab1c..6c1fbf08039 100644
--- 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)
diff --git a/doc/api.txt b/doc/api.txt
index 84ee58c9b2d..52da86e4b50 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -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
diff --git a/doc/index.html b/doc/index.html
index 49b9bc58a7b..17773e5381d 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.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 bc918bbfc2d..599e94bb065 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.21"
+VERSION="0.1.22"
APPNAME="node.js"
import js2c