From a2d809fe902f6c4102dba8f2e3e9551aad137c0f Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 19 Dec 2009 01:24:59 +0100 Subject: [PATCH] bump version --- ChangeLog | 30 +++++++++++++++++++++++++++++- doc/api.txt | 2 +- doc/index.html | 4 ++-- wscript | 2 +- 4 files changed, 33 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7cba74cab1c561..6c1fbf08039943 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 84ee58c9b2de62..52da86e4b50ab2 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 49b9bc58a7b181..17773e5381de4f 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 bc918bbfc2d6ae..599e94bb065db3 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