From: Ryan Dahl Date: Thu, 13 May 2010 21:58:31 +0000 (-0700) Subject: bump version X-Git-Tag: v0.1.95^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0914d33842976c2c870df06573b68f9192a1fb7a;p=platform%2Fupstream%2Fnodejs.git bump version --- diff --git a/AUTHORS b/AUTHORS index c248305..78f3594 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 048523c..664b31b 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 096e925..c85b0d6 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 15cb106..06bc96c 100644 --- a/doc/index.html +++ b/doc/index.html @@ -95,8 +95,8 @@ server.listen(7000, "localhost"); 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 ae446c3..e8bb79e 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