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-04-29 21:41:39 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-04-30 04:44:51 +0400
commit557ba6bd97bad3afe0f9bd3ac07efac0a39978c1 (patch)
treefaa857e582e1a66d1ccb7a5c8bf16d824206a75f
parent301b44d45da94b2f5ab175769fe655270a4cca92 (diff)
bump versionv0.1.93
-rw-r--r--AUTHORS2
-rw-r--r--ChangeLog21
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
5 files changed, 26 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index 435e7a4e932..a4fd9f41fa7 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -66,3 +66,5 @@ Carson McDonald <carson@ioncannon.net>
Julian Lamb <thepurlieu@gmail.com>
Brian Hammond <brian@fictorial.com>
Mathias Pettersson <mape@mape.me>
+Trevor Blackwell <tlb@tlb.org>
+Thomas Lee <tom@tom-debian.sensis.com.au>
diff --git a/ChangeLog b/ChangeLog
index ef0086c03a7..eeaaf0cc20c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,23 @@
-2010.04.23, Version 0.1.92
+2010.04.29, Version 0.1.93
+
+ * Fixed no 'end' event on long chunked HTTP messages
+ http://github.com/ry/node/issues/#issue/77
+
+ * Remove legacy modules http_old and tcp_old
+
+ * Support DNS MX queries (Jérémy Lal)
+
+ * Fix large socket write (tlb@tlb.org)
+
+ * Fix child process exit codes (Felix Geisendörfer)
+
+ * Allow callers to disable PHP/Rails style parameter mungeing in
+ querystring.stringify (Thomas Lee)
+
+ * Upgrade V8 to 2.2.6
+
+
+2010.04.23, Version 0.1.92, caa828a242f39b6158084ef4376355161c14fe34
* OpenSSL support. Still undocumented (see tests). (Rhys Jones)
diff --git a/doc/api_header.html b/doc/api_header.html
index 30304cae4d0..0ee03fc621b 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.92</div>
+ <div id="toctitle">Node v0.1.93</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 54db14b7be7..f1d807e573d 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.23
- <a href="http://nodejs.org/dist/node-v0.1.92.tar.gz">node-v0.1.92.tar.gz</a>
+ 2010.04.29
+ <a href="http://nodejs.org/dist/node-v0.1.93.tar.gz">node-v0.1.93.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 830266e3826..1650e1e82ca 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.92"
+VERSION="0.1.93"
APPNAME="node.js"
import js2c