diff --git a/AUTHORS b/AUTHORS index 9d9b313d37..3871942ed0 100644 --- a/AUTHORS +++ b/AUTHORS @@ -79,3 +79,4 @@ Jonathan Knezek Jonathan Rentzsch Ben Noordhuis Elijah Insua +Andrew Johnston diff --git a/ChangeLog b/ChangeLog index 664b31b0c1..c78d818cef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,32 @@ -2010.05.13, Version 0.1.95 +2010.05.21, Version 0.1.96 + +* Thrown errors in http and socket call back get bubbled up. + +* Add fs.fsync (Andrew Johnston) + +* Bugfix: signal unregistering (Jonas Pfenniger) + +* Added better error messages for async and sync fs calls with paths + (TJ Holowaychuk) + +* Support arrays and strings in buffer constructor. + (Felix Geisendörfer) + +* Fix errno reporting in DNS exceptions. + +* Support buffers in fs.WriteStream.write. + +* Bugfix: Safely decode a utf8 streams that are broken on a multbyte + character (http and net). (Felix Geisendörfer) + +* Make Buffer's C++ constructor public. + +* Deprecate sys.p() + +* FIX path.dirname('/tmp') => '/'. (Jonathan Rentzsch) + + +2010.05.13, Version 0.1.95, 0914d33842976c2c870df06573b68f9192a1fb7a * Change GC idle notify so that it runs alongside setInterval diff --git a/doc/api_header.html b/doc/api_header.html index c85b0d6470..9f5dd49cfb 100644 --- a/doc/api_header.html +++ b/doc/api_header.html @@ -295,7 +295,7 @@
-
Node v0.1.95
+
Node v0.1.96
diff --git a/doc/index.html b/doc/index.html index 06bc96cbaa..bd6436ab69 100644 --- a/doc/index.html +++ b/doc/index.html @@ -95,8 +95,8 @@ server.listen(7000, "localhost"); git repo

- 2010.05.13 - node-v0.1.95.tar.gz + 2010.05.21 + node-v0.1.96.tar.gz

Historical: versions, docs

diff --git a/wscript b/wscript index 63d072c639..7eb05cc5c7 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.95" +VERSION="0.1.96" APPNAME="node.js" import js2c