Skip to content

Commit 39b63df

Browse files
committed
bump version
1 parent b9cd336 commit 39b63df

File tree

5 files changed

+39
-5
lines changed

5 files changed

+39
-5
lines changed

AUTHORS

+6
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,9 @@ Yuichiro MASUI <[email protected]>
5252
Mark Hansen <[email protected]>
5353
Zoran Tomicic <[email protected]>
5454
Jeremy Ashkenas <[email protected]>
55+
Scott González <[email protected]>
56+
James Duncan <[email protected]>
57+
Arlo Breault <[email protected]>
58+
Kris Kowal <[email protected]>
59+
Jacek Becela <[email protected]>
60+
Rob Ellis <[email protected]>

ChangeLog

+29-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,32 @@
1-
2010.02.22, Version 0.1.30
1+
2010.03.05, Version 0.1.31
2+
3+
* API: - Move process.watchFile into fs module
4+
- Move process.inherits to sys
5+
6+
* Improve Solaris port
7+
8+
* tcp.Connection.prototype.write now returns boolean to indicate if
9+
argument was flushed to the kernel buffer.
10+
11+
* Added fs.link, fs.symlink, fs.readlink, fs.realpath
12+
(Rasmus Andersson)
13+
14+
* Add setgid,getgid (James Duncan)
15+
16+
* Improve sys.inspect (Benjamin Thomas)
17+
18+
* Allow passing env to child process (Isaac Schlueter)
19+
20+
* fs.createWriteStream, fs.createReadStream (Felix Geisendörfer)
21+
22+
* Add INI parser (Rob Ellis)
23+
24+
* Bugfix: fs.readFile handling encoding (Jacek Becela)
25+
26+
* Upgrade V8 to 2.1.2
27+
28+
29+
2010.02.22, Version 0.1.30, bb0d1e65e1671aaeb21fac186b066701da0bc33b
230

331
* Major API Changes
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.30, 2010.02.22
4+
Version, 0.1.31, 2010.03.05
55

66

77
== NAME

doc/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ <h2 id="download">Download</h2>
9696
<a href="http://github.com/ry/node/tree/master">git repo</a>
9797
</p>
9898
<p>
99-
2010.02.22
100-
<a href="http://nodejs.org/dist/node-v0.1.30.tar.gz">node-v0.1.30.tar.gz</a>
99+
2010.03.05
100+
<a href="http://nodejs.org/dist/node-v0.1.31.tar.gz">node-v0.1.31.tar.gz</a>
101101
</p>
102102

103103
<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.30"
10+
VERSION="0.1.31"
1111
APPNAME="node.js"
1212

1313
import js2c

0 commit comments

Comments
 (0)