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 -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 @@

Download

git repo

- 2009.12.06 + 2009.12.19 node-v0.1.21.tar.gz + href="http://s3.amazonaws.com/four.livejournal/20091219/node-v0.1.22.tar.gz">node-v0.1.22.tar.gz

Build

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