Skip to content

Commit 0cfa789

Browse files
committed
bump version
1 parent f3ad635 commit 0cfa789

File tree

4 files changed

+39
-5
lines changed

4 files changed

+39
-5
lines changed

ChangeLog

+35-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,38 @@
1-
2010.01.20, Version 0.1.26
1+
2010.02.03, Version 0.1.27
2+
3+
* Implemented __dirname (Felix Geisendörfer)
4+
5+
* Downcase process.ARGV, process.ENV, GLOBAL
6+
(now process.argv, process.env, global)
7+
8+
* Bug Fix: Late promise promise callbacks firing
9+
(Felix Geisendörfer, Jonas Pfenniger)
10+
11+
* Make assert.AssertionError instance of Error
12+
13+
* Removed inline require call for querystring
14+
15+
16+
* Add support for MX, TXT, and SRV records in DNS module.
17+
(Blaine Cook)
18+
19+
* Bugfix: HTTP client automatically reconnecting
20+
21+
* Adding OS X .dmg build scripts. (Standa Opichal)
22+
23+
* Bugfix: ObjectWrap memory leak
24+
25+
* Bugfix: Multipart handle Content-Type headers with charset
26+
(Felix Geisendörfer)
27+
28+
* Upgrade http-parser to fix header overflow attack.
29+
30+
* Upgrade V8 to 2.1.0
31+
32+
* Various other bug fixes, performance improvements.
33+
34+
35+
2010.01.20, Version 0.1.26, da00413196e432247346d9e587f8c78ce5ceb087
236

337
* Bugfix, HTTP eof causing crash (Ben Williamson)
438

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.26, 2010.01.20
4+
Version, 0.1.27, 2010.02.03
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-
2010.01.20
100+
2010.02.03
101101
<a
102-
href="http://s3.amazonaws.com/four.livejournal/20100120/node-v0.1.26.tar.gz">node-v0.1.26.tar.gz</a>
102+
href="http://s3.amazonaws.com/four.livejournal/20100203/node-v0.1.27.tar.gz">node-v0.1.27.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.26"
10+
VERSION="0.1.27"
1111
APPNAME="node.js"
1212

1313
import js2c

0 commit comments

Comments
 (0)