Skip to content

Commit 9514a4d

Browse files
committed
bump version
1 parent 0de138a commit 9514a4d

File tree

5 files changed

+34
-5
lines changed

5 files changed

+34
-5
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,4 @@ Jonathan Knezek <[email protected]>
7979
Jonathan Rentzsch <[email protected]>
8080
Ben Noordhuis <bnoordhuis@bender.(none)>
8181
Elijah Insua <[email protected]>
82+
Andrew Johnston <[email protected]>

ChangeLog

+29-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,32 @@
1-
2010.05.13, Version 0.1.95
1+
2010.05.21, Version 0.1.96
2+
3+
* Thrown errors in http and socket call back get bubbled up.
4+
5+
* Add fs.fsync (Andrew Johnston)
6+
7+
* Bugfix: signal unregistering (Jonas Pfenniger)
8+
9+
* Added better error messages for async and sync fs calls with paths
10+
(TJ Holowaychuk)
11+
12+
* Support arrays and strings in buffer constructor.
13+
(Felix Geisendörfer)
14+
15+
* Fix errno reporting in DNS exceptions.
16+
17+
* Support buffers in fs.WriteStream.write.
18+
19+
* Bugfix: Safely decode a utf8 streams that are broken on a multbyte
20+
character (http and net). (Felix Geisendörfer)
21+
22+
* Make Buffer's C++ constructor public.
23+
24+
* Deprecate sys.p()
25+
26+
* FIX path.dirname('/tmp') => '/'. (Jonathan Rentzsch)
27+
28+
29+
2010.05.13, Version 0.1.95, 0914d33842976c2c870df06573b68f9192a1fb7a
230

331
* Change GC idle notify so that it runs alongside setInterval
432

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.13
99-
<a href="http://nodejs.org/dist/node-v0.1.95.tar.gz">node-v0.1.95.tar.gz</a>
98+
2010.05.21
99+
<a href="http://nodejs.org/dist/node-v0.1.96.tar.gz">node-v0.1.96.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.95"
10+
VERSION="0.1.96"
1111
APPNAME="node.js"
1212

1313
import js2c

0 commit comments

Comments
 (0)