From 0914d33842976c2c870df06573b68f9192a1fb7a Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 13 May 2010 14:58:31 -0700 Subject: [PATCH] bump version --- AUTHORS | 2 ++ ChangeLog | 26 +++++++++++++++++++++++++- doc/api_header.html | 2 +- doc/index.html | 4 ++-- wscript | 2 +- 5 files changed, 31 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index c24830504685e2..78f3594b7ce699 100644 --- a/AUTHORS +++ b/AUTHORS @@ -72,3 +72,5 @@ Daniel Berger Paulo Matias Peter Griess Jonathan Knezek +Jonathan Rentzsch +Elijah Insua diff --git a/ChangeLog b/ChangeLog index 048523c06b4abb..664b31b0c1c76d 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 096e9255a76c60..c85b0d647033e0 100644 --- a/doc/api_header.html +++ b/doc/api_header.html @@ -295,7 +295,7 @@
-
Node v0.1.94
+
Node v0.1.95
diff --git a/doc/index.html b/doc/index.html index 15cb1065f91be3..06bc96cbaab038 100644 --- a/doc/index.html +++ b/doc/index.html @@ -95,8 +95,8 @@

Download

git repo

- 2010.05.06 - node-v0.1.94.tar.gz + 2010.05.13 + node-v0.1.95.tar.gz

Historical: versions, docs

diff --git a/wscript b/wscript index ae446c3387efb6..e8bb79ee3587c2 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