bump version v0.1.95
authorRyan Dahl <ry@tinyclouds.org>
Thu, 13 May 2010 21:58:31 +0000 (14:58 -0700)
committerRyan Dahl <ry@tinyclouds.org>
Thu, 13 May 2010 23:24:28 +0000 (16:24 -0700)
AUTHORS
ChangeLog
doc/api_header.html
doc/index.html
wscript

diff --git a/AUTHORS b/AUTHORS
index c248305..78f3594 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -72,3 +72,5 @@ Daniel Berger <code+node@dpbis.net>
 Paulo Matias <paulo.matias@usp.br>
 Peter Griess <pg@std.in>
 Jonathan Knezek <jdknezek@gmail.com>
+Jonathan Rentzsch <jwr.git@redshed.net>
+Elijah Insua <tmpvar@gmail.com>
index 048523c..664b31b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,28 @@
-2010.05.06, Version 0.1.94
+2010.05.13, Version 0.1.95
+
+* Change GC idle notify so that it runs alongside setInterval
+
+* Install node_buffer.h on make install
+
+* fs.readFile returns Buffer by default (Tim Caswell)
+
+* Fix error reporting in child_process callbacks
+
+* Better logic for testing if an argument is a port
+
+* Improve error reporting (single line "node.js:176:9" errors)
+
+* Bugfix: Some http responses being truncated (appeared in 0.1.94)
+
+* Fix long standing net idle timeout bugs. Enable 2 minute timeout
+  by default in HTTP servers.
+
+* Add fs.fstat (Ben Noordhuis)
+
+* Upgrade to V8 2.2.9
+
+
+2010.05.06, Version 0.1.94, f711d5343b29d1e72e87107315708e40951a7826
 
 * Look in /usr/local/lib/node for modules, so that there's a way 
   to install modules globally (Issac Schlueter)
index 096e925..c85b0d6 100644 (file)
 <body>
 
 <div id="toc">
-       <div id="toctitle">Node v0.1.94</div>
+       <div id="toctitle">Node v0.1.95</div>
        <noscript>JavaScript must be enabled in your browser to display the table of contents.</noscript>
 </div>
 <div id='man'>
index 15cb106..06bc96c 100644 (file)
@@ -95,8 +95,8 @@ server.listen(7000, "localhost");</pre>
         <a href="http://github.com/ry/node/tree/master">git repo</a>
       </p>
       <p>
-        2010.05.06
-        <a href="http://nodejs.org/dist/node-v0.1.94.tar.gz">node-v0.1.94.tar.gz</a>
+        2010.05.13
+        <a href="http://nodejs.org/dist/node-v0.1.95.tar.gz">node-v0.1.95.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 ae446c3..e8bb79e 100644 (file)
--- 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.94"
+VERSION="0.1.95"
 APPNAME="node.js"
 
 import js2c