diff --git a/AUTHORS b/AUTHORS index 697aab5c8f6034..0153fe93c89a23 100644 --- a/AUTHORS +++ b/AUTHORS @@ -83,3 +83,5 @@ Andrew Johnston Brian White Aapo Laitinen Sam Hughes +Orlando Vazquez +Raffaele Sena diff --git a/ChangeLog b/ChangeLog index f9ca89d181bd5e..e6d6848b5fe7a1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,19 @@ -2010.05.29, Version 0.1.97 +2010.06.11, Version 0.1.98 + +* Port to Windows/Cygwin (Raffaele Sena) + +* File descriptor passing on unix sockets. (Peter Griess) + +* Simple, builtin readline library. REPL is now entered by + executing "node" without arguments. + +* Add a parameter to spawn() that sets the child's stdio file + descriptors. + +* Upgrade V8 to 2.2.16, http-parser fixes, upgrade c-ares to 1.7.3. + + +2010.05.29, Version 0.1.97, 0c1aa36835fa6a3557843dcbc6ed6714d353a783 * HTTP throttling: outgoing messages emit 'drain' and write() returns false when send buffer is full. diff --git a/doc/api_header.html b/doc/api_header.html index ef34c4edc6c960..e6f4e2312e85df 100644 --- a/doc/api_header.html +++ b/doc/api_header.html @@ -295,7 +295,7 @@
-
Node v0.1.97
+
Node v0.1.98
diff --git a/doc/index.html b/doc/index.html index 8ad55f2cc97f89..1df4b4e4ea9d1f 100644 --- a/doc/index.html +++ b/doc/index.html @@ -92,8 +92,8 @@

Download

git repo

- 2010.05.29 - node-v0.1.97.tar.gz + 2010.06.11 + node-v0.1.98.tar.gz

Historical: versions, docs

diff --git a/wscript b/wscript index 736344b9d72287..a939657b400aea 100644 --- a/wscript +++ b/wscript @@ -7,7 +7,7 @@ from os.path import join, dirname, abspath from logging import fatal cwd = os.getcwd() -VERSION="0.1.97" +VERSION="0.1.98" APPNAME="node.js" import js2c