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-06 21:39:27 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-05-06 21:39:27 +0400
commitf711d5343b29d1e72e87107315708e40951a7826 (patch)
tree93c1b93f18c1c8bc87cd93f83008b843d98ed798
parent6aab6ebe6168464de8e7b0c7254fad4771f281c1 (diff)
bump versionv0.1.94
-rw-r--r--AUTHORS4
-rw-r--r--ChangeLog30
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
5 files changed, 37 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index a4fd9f41fa7..63a1ae329db 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -68,3 +68,7 @@ Brian Hammond <brian@fictorial.com>
Mathias Pettersson <mape@mape.me>
Trevor Blackwell <tlb@tlb.org>
Thomas Lee <tom@tom-debian.sensis.com.au>
+dpb587 <code+node@dpbis.net>
+Paulo Matias <paulo.matias@usp.br>
+Peter Griess <pg@std.in>
+Jonathan Knezek <jdknezek@gmail.com>
diff --git a/ChangeLog b/ChangeLog
index eeaaf0cc20c..048523c06b4 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 0ee03fc621b..096e9255a76 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.93</div>
+ <div id="toctitle">Node v0.1.94</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 4c709a591cb..15cb1065f91 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.04.29
- <a href="http://nodejs.org/dist/node-v0.1.93.tar.gz">node-v0.1.93.tar.gz</a>
+ 2010.05.06
+ <a href="http://nodejs.org/dist/node-v0.1.94.tar.gz">node-v0.1.94.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 5b5c3064cab..74d515d98e1 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