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-21 13:55:38 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-05-21 13:55:38 +0400
commit9514a4d5476225e8c8310ce5acae2857033bcaaa (patch)
tree39b7c287003082d0c7ff09b91db25bee34293ed6
parent0de138acb59e620e0a542ace665abce7df49439f (diff)
bump versionv0.1.96
-rw-r--r--AUTHORS1
-rw-r--r--ChangeLog30
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
5 files changed, 34 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index 9d9b313d373..3871942ed09 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -79,3 +79,4 @@ Jonathan Knezek <jdknezek@gmail.com>
Jonathan Rentzsch <jwr.git@redshed.net>
Ben Noordhuis <bnoordhuis@bender.(none)>
Elijah Insua <tmpvar@gmail.com>
+Andrew Johnston <apjohnsto@gmail.com>
diff --git a/ChangeLog b/ChangeLog
index 664b31b0c1c..c78d818cef2 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 c85b0d64703..9f5dd49cfbb 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.95</div>
+ <div id="toctitle">Node v0.1.96</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 06bc96cbaab..bd6436ab693 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.05.13
- <a href="http://nodejs.org/dist/node-v0.1.95.tar.gz">node-v0.1.95.tar.gz</a>
+ 2010.05.21
+ <a href="http://nodejs.org/dist/node-v0.1.96.tar.gz">node-v0.1.96.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 63d072c6394..7eb05cc5c79 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