diff options
-rw-r--r-- | ChangeLog | 16 | ||||
-rw-r--r-- | website/api.txt | 2 | ||||
-rw-r--r-- | website/index.html | 4 | ||||
-rw-r--r-- | wscript | 2 |
4 files changed, 22 insertions, 2 deletions
@@ -1,3 +1,19 @@ +2009.08.01, Version 0.1.2 + + * Add DNS API + + * node.tcp.Server's backlog option is now an argument to listen() + + * Upgrade V8 to 1.3.1 + + * Bugfix: Default to chunked for client requests without C-Length. + + * Bugfix: Line numbers in stack traces. + + * Bugfix: negative integers in raw encoding stream + + * Bugfix: node.fs.File was not passing args to promise callbacks. + 2009.07.27, Version 0.1.1 * Simplify and clean up ObjectWrap. diff --git a/website/api.txt b/website/api.txt index 90c0d1db7..865f85587 100644 --- a/website/api.txt +++ b/website/api.txt @@ -1,7 +1,7 @@ NODE(1) ======= Ryan Dahl <ry@tinyclouds.org> -Version, 0.1.1, 2009.07.27 +Version, 0.1.2, 2009.08.01 == NAME diff --git a/website/index.html b/website/index.html index ce9ab651c..c4ef79b0a 100644 --- a/website/index.html +++ b/website/index.html @@ -156,6 +156,10 @@ Server running at http://127.0.0.1:8000/</pre> </p> <ul> <li> + 2009.08.01 + <a href="http://s3.amazonaws.com/four.livejournal/20090801/node-0.1.2.tar.gz">node-0.1.2.tar.gz</a> + </li> + <li> 2009.07.27 <a href="http://s3.amazonaws.com/four.livejournal/20090727/node-0.1.1.tar.gz">node-0.1.1.tar.gz</a> </li> @@ -6,7 +6,7 @@ from logging import fatal import js2c -VERSION='0.1.1' +VERSION='0.1.2' APPNAME='node' srcdir = '.' |