From 557ba6bd97bad3afe0f9bd3ac07efac0a39978c1 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 29 Apr 2010 10:41:39 -0700 Subject: [PATCH] bump version --- AUTHORS | 2 ++ ChangeLog | 21 ++++++++++++++++++++- doc/api_header.html | 2 +- doc/index.html | 4 ++-- wscript | 2 +- 5 files changed, 26 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index 435e7a4e93..a4fd9f41fa 100644 --- a/AUTHORS +++ b/AUTHORS @@ -66,3 +66,5 @@ Carson McDonald Julian Lamb Brian Hammond Mathias Pettersson +Trevor Blackwell +Thomas Lee diff --git a/ChangeLog b/ChangeLog index ef0086c03a..eeaaf0cc20 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 30304cae4d..0ee03fc621 100644 --- a/doc/api_header.html +++ b/doc/api_header.html @@ -295,7 +295,7 @@
-
Node v0.1.92
+
Node v0.1.93
diff --git a/doc/index.html b/doc/index.html index 54db14b7be..f1d807e573 100644 --- a/doc/index.html +++ b/doc/index.html @@ -95,8 +95,8 @@ server.listen(7000, "localhost"); git repo

- 2010.04.23 - node-v0.1.92.tar.gz + 2010.04.29 + node-v0.1.93.tar.gz

Historical: versions, docs

diff --git a/wscript b/wscript index 830266e382..1650e1e82c 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