Skip to content

Commit 10d8adb

Browse files
committedJun 11, 2010
bump version
1 parent 9c85357 commit 10d8adb

File tree

5 files changed

+22
-5
lines changed

5 files changed

+22
-5
lines changed
 

‎AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,5 @@ Andrew Johnston <apjohnsto@gmail.com>
8383
Brian White <mscdex@mscdex.net>
8484
Aapo Laitinen <aapo.laitinen@iki.fi>
8585
Sam Hughes <sam@samuelhughes.com>
86+
Orlando Vazquez <ovazquez@gmail.com>
87+
Raffaele Sena <raff367@gmail.com>

‎ChangeLog

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
2010.05.29, Version 0.1.97
1+
2010.06.11, Version 0.1.98
2+
3+
* Port to Windows/Cygwin (Raffaele Sena)
4+
5+
* File descriptor passing on unix sockets. (Peter Griess)
6+
7+
* Simple, builtin readline library. REPL is now entered by
8+
executing "node" without arguments.
9+
10+
* Add a parameter to spawn() that sets the child's stdio file
11+
descriptors.
12+
13+
* Upgrade V8 to 2.2.16, http-parser fixes, upgrade c-ares to 1.7.3.
14+
15+
16+
2010.05.29, Version 0.1.97, 0c1aa36835fa6a3557843dcbc6ed6714d353a783
217

318
* HTTP throttling: outgoing messages emit 'drain' and write() returns false
419
when send buffer is full.

‎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
@@ -92,8 +92,8 @@ <h2 id="download">Download</h2>
9292
<a href="http://github.com/ry/node/tree/master">git repo</a>
9393
</p>
9494
<p>
95-
2010.05.29
96-
<a href="http://nodejs.org/dist/node-v0.1.97.tar.gz">node-v0.1.97.tar.gz</a>
95+
2010.06.11
96+
<a href="http://nodejs.org/dist/node-v0.1.98.tar.gz">node-v0.1.98.tar.gz</a>
9797
</p>
9898

9999
<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.97"
10+
VERSION="0.1.98"
1111
APPNAME="node.js"
1212

1313
import js2c

0 commit comments

Comments
 (0)
Please sign in to comment.