Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-06-10 03:13:40 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-06-11 23:58:14 +0400
commit10d8adb08933d1d4cea60192c2a31c56d896733d (patch)
tree4f25d60d0dbde9f2be9ba9a23649c7de4129044a
parent9c85357846fddebcd755df90ec37b8aa37c0a535 (diff)
bump versionv0.1.98
-rw-r--r--AUTHORS2
-rw-r--r--ChangeLog17
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
5 files changed, 22 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index 697aab5c8f6..0153fe93c89 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -83,3 +83,5 @@ Andrew Johnston <apjohnsto@gmail.com>
Brian White <mscdex@mscdex.net>
Aapo Laitinen <aapo.laitinen@iki.fi>
Sam Hughes <sam@samuelhughes.com>
+Orlando Vazquez <ovazquez@gmail.com>
+Raffaele Sena <raff367@gmail.com>
diff --git a/ChangeLog b/ChangeLog
index f9ca89d181b..e6d6848b5fe 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 ef34c4edc6c..e6f4e2312e8 100644
--- a/doc/api_header.html
+++ b/doc/api_header.html
@@ -295,7 +295,7 @@
<body>
<div id="toc">
- <div id="toctitle">Node v0.1.97</div>
+ <div id="toctitle">Node v0.1.98</div>
<noscript>JavaScript must be enabled in your browser to display the table of contents.</noscript>
</div>
<div id='man'>
diff --git a/doc/index.html b/doc/index.html
index 8ad55f2cc97..1df4b4e4ea9 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -92,8 +92,8 @@ net.createServer(function (socket) {
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2010.05.29
- <a href="http://nodejs.org/dist/node-v0.1.97.tar.gz">node-v0.1.97.tar.gz</a>
+ 2010.06.11
+ <a href="http://nodejs.org/dist/node-v0.1.98.tar.gz">node-v0.1.98.tar.gz</a>
</p>
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
diff --git a/wscript b/wscript
index 736344b9d72..a939657b400 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