Skip to content

Commit 0c1aa36

Browse files
committedMay 30, 2010
bump version
1 parent 16818ff commit 0c1aa36

File tree

5 files changed

+28
-5
lines changed

5 files changed

+28
-5
lines changed
 

‎AUTHORS

+3
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,6 @@ Jonathan Rentzsch <jwr.git@redshed.net>
8080
Ben Noordhuis <bnoordhuis@bender.(none)>
8181
Elijah Insua <tmpvar@gmail.com>
8282
Andrew Johnston <apjohnsto@gmail.com>
83+
Brian White <mscdex@mscdex.net>
84+
Aapo Laitinen <aapo.laitinen@iki.fi>
85+
Sam Hughes <sam@samuelhughes.com>

‎ChangeLog

+21-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,24 @@
1-
2010.05.21, Version 0.1.96
1+
2010.05.29, Version 0.1.97
2+
3+
* HTTP throttling: outgoing messages emit 'drain' and write() returns false
4+
when send buffer is full.
5+
6+
* API: readFileSync without encoding argument now returns a Buffer
7+
8+
* Improve Buffer C++ API; addons now compile with debugging symbols.
9+
10+
* Improvements to path.extname() and REPL; add fs.chown().
11+
12+
* fs.ReadStream now emits buffers, fs.readFileSync returns buffers.
13+
14+
* Bugfix: parsing HTTP responses to HEAD requests.
15+
16+
* Port to OpenBSD.
17+
18+
* Upgrade V8 to 2.2.12, libeio, http-parser.
19+
20+
21+
2010.05.21, Version 0.1.96, 9514a4d5476225e8c8310ce5acae2857033bcaaa
222

323
* Thrown errors in http and socket call back get bubbled up.
424

‎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.21
99-
<a href="http://nodejs.org/dist/node-v0.1.96.tar.gz">node-v0.1.96.tar.gz</a>
98+
2010.05.29
99+
<a href="http://nodejs.org/dist/node-v0.1.97.tar.gz">node-v0.1.97.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.96"
10+
VERSION="0.1.97"
1111
APPNAME="node.js"
1212

1313
import js2c

0 commit comments

Comments
 (0)
Please sign in to comment.