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-05-14 01:58:31 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-05-14 03:24:28 +0400
commit0914d33842976c2c870df06573b68f9192a1fb7a (patch)
treedb8930c8c8d24aa2323d0d080139e41a34ef7018
parent23d680bb858134bb38a74423fb86b8d58477bbb4 (diff)
bump versionv0.1.95
-rw-r--r--AUTHORS2
-rw-r--r--ChangeLog26
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
5 files changed, 31 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index c2483050468..78f3594b7ce 100644
--- 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>
diff --git a/ChangeLog b/ChangeLog
index 048523c06b4..664b31b0c1c 100644
--- 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)
diff --git a/doc/api_header.html b/doc/api_header.html
index 096e9255a76..c85b0d64703 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.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'>
diff --git a/doc/index.html b/doc/index.html
index 15cb1065f91..06bc96cbaab 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -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 ae446c3387e..e8bb79ee358 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.94"
+VERSION="0.1.95"
APPNAME="node.js"
import js2c