Skip to content

Commit 0914d33

Browse files
committedMay 13, 2010
bump version
1 parent 23d680b commit 0914d33

File tree

5 files changed

+31
-5
lines changed

5 files changed

+31
-5
lines changed
 

‎AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,5 @@ Daniel Berger <code+node@dpbis.net>
7272
Paulo Matias <paulo.matias@usp.br>
7373
Peter Griess <pg@std.in>
7474
Jonathan Knezek <jdknezek@gmail.com>
75+
Jonathan Rentzsch <jwr.git@redshed.net>
76+
Elijah Insua <tmpvar@gmail.com>

‎ChangeLog

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,28 @@
1-
2010.05.06, Version 0.1.94
1+
2010.05.13, Version 0.1.95
2+
3+
* Change GC idle notify so that it runs alongside setInterval
4+
5+
* Install node_buffer.h on make install
6+
7+
* fs.readFile returns Buffer by default (Tim Caswell)
8+
9+
* Fix error reporting in child_process callbacks
10+
11+
* Better logic for testing if an argument is a port
12+
13+
* Improve error reporting (single line "node.js:176:9" errors)
14+
15+
* Bugfix: Some http responses being truncated (appeared in 0.1.94)
16+
17+
* Fix long standing net idle timeout bugs. Enable 2 minute timeout
18+
by default in HTTP servers.
19+
20+
* Add fs.fstat (Ben Noordhuis)
21+
22+
* Upgrade to V8 2.2.9
23+
24+
25+
2010.05.06, Version 0.1.94, f711d5343b29d1e72e87107315708e40951a7826
226

327
* Look in /usr/local/lib/node for modules, so that there's a way
428
to install modules globally (Issac Schlueter)

‎doc/api_header.html

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎doc/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ <h2 id="download">Download</h2>
9595
<a href="http://github.com/ry/node/tree/master">git repo</a>
9696
</p>
9797
<p>
98-
2010.05.06
99-
<a href="http://nodejs.org/dist/node-v0.1.94.tar.gz">node-v0.1.94.tar.gz</a>
98+
2010.05.13
99+
<a href="http://nodejs.org/dist/node-v0.1.95.tar.gz">node-v0.1.95.tar.gz</a>
100100
</p>
101101

102102
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>

‎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.94"
10+
VERSION="0.1.95"
1111
APPNAME="node.js"
1212

1313
import js2c

0 commit comments

Comments
 (0)
Please sign in to comment.