Skip to content

Commit a2d809f

Browse files
committed
bump version
1 parent a98afdf commit a2d809f

File tree

4 files changed

+33
-5
lines changed

4 files changed

+33
-5
lines changed

ChangeLog

+29-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,32 @@
1-
2009.12.06, Version 0.1.21
1+
2009.12.19, Version 0.1.22
2+
3+
* Bugfix: child modules get wrong id with "index.js" (isaacs)
4+
5+
* Bugfix: require("../foo") cycles (isaacs)
6+
7+
* Bugfix: require() should throw error if module does.
8+
9+
* New URI parser stolen from Narwhal (isaacs)
10+
11+
* Bugfix: correctly check kqueue and epoll. (Rasmus Andersson)
12+
13+
* Upgrade WAF to 1.5.10
14+
15+
* Bugfix: posix.statSync() was crashing
16+
17+
* Statically define string symbols for performance improvement
18+
19+
* Bugfix: ARGV[0] weirdness
20+
21+
* Added superCtor to ctor.super_ instead superCtor.prototype.
22+
(Johan Dahlberg)
23+
24+
* http-parser supports webdav methods
25+
26+
* API: http.Client.prototype.request() (Christopher Lenz)
27+
28+
29+
2009.12.06, Version 0.1.21, c6affb64f96a403a14d20035e7fbd6d0ce089db5
230

331
* Feature: Add HTTP client TLS support (Rhys Jones)
432

doc/api.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
NODE(1)
22
=======
33
Ryan Dahl <ry@tinyclouds.org>
4-
Version, 0.1.21, 2009.12.06
4+
Version, 0.1.22, 2009.12.19
55

66

77
== NAME

doc/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ <h2 id="download">Download</h2>
9797
<a href="http://github.com/ry/node/tree/master">git repo</a>
9898
</p>
9999
<p>
100-
2009.12.06
100+
2009.12.19
101101
<a
102-
href="http://s3.amazonaws.com/four.livejournal/20091206/node-v0.1.21.tar.gz">node-v0.1.21.tar.gz</a>
102+
href="http://s3.amazonaws.com/four.livejournal/20091219/node-v0.1.22.tar.gz">node-v0.1.22.tar.gz</a>
103103
</p>
104104

105105
<h2 id="build">Build</h2>

wscript

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from os.path import join, dirname, abspath
77
from logging import fatal
88

99
cwd = os.getcwd()
10-
VERSION="0.1.21"
10+
VERSION="0.1.22"
1111
APPNAME="node.js"
1212

1313
import js2c

0 commit comments

Comments
 (0)