From: Ryan Dahl Date: Thu, 6 May 2010 17:39:27 +0000 (-0700) Subject: bump version X-Git-Tag: v0.1.94^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f711d5343b29d1e72e87107315708e40951a7826;p=platform%2Fupstream%2Fnodejs.git bump version --- diff --git a/AUTHORS b/AUTHORS index a4fd9f4..63a1ae3 100644 --- a/AUTHORS +++ b/AUTHORS @@ -68,3 +68,7 @@ Brian Hammond Mathias Pettersson Trevor Blackwell Thomas Lee +dpb587 +Paulo Matias +Peter Griess +Jonathan Knezek diff --git a/ChangeLog b/ChangeLog index eeaaf0c..048523c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,32 @@ -2010.04.29, Version 0.1.93 +2010.05.06, Version 0.1.94 + +* Look in /usr/local/lib/node for modules, so that there's a way + to install modules globally (Issac Schlueter) + +* SSL improvements (Rhys Jones, Paulo Matias) + +* Added c-ares headers for linux-arm (Jonathan Knezek) + +* Add symbols to release build + +* HTTP upgrade improvements, docs (Micheil Smith) + +* HTTP server emits 'clientError' instead of printing message + +* Bugfix: Don't emit 'error' twice from http.Client + +* Bugfix: Ignore SIGPIPE + +* Bugfix: destroy() instead of end() http connection at end of + pipeline + +* Bugfix: http.Client may be prematurely released back to the + free pool. (Thomas Lee) + +* Upgrade V8 to 2.2.8 + + +2010.04.29, Version 0.1.93, 557ba6bd97bad3afe0f9bd3ac07efac0a39978c1 * Fixed no 'end' event on long chunked HTTP messages http://github.com/ry/node/issues/#issue/77 diff --git a/doc/api_header.html b/doc/api_header.html index 0ee03fc..096e925 100644 --- a/doc/api_header.html +++ b/doc/api_header.html @@ -295,7 +295,7 @@
-
Node v0.1.93
+
Node v0.1.94
diff --git a/doc/index.html b/doc/index.html index 4c709a5..15cb106 100644 --- a/doc/index.html +++ b/doc/index.html @@ -95,8 +95,8 @@ server.listen(7000, "localhost"); git repo

- 2010.04.29 - node-v0.1.93.tar.gz + 2010.05.06 + node-v0.1.94.tar.gz

Historical: versions, docs

diff --git a/wscript b/wscript index 5b5c306..74d515d 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.93" +VERSION="0.1.94" APPNAME="node.js" import js2c