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-30 06:32:33 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-05-30 06:37:57 +0400
commit0c1aa36835fa6a3557843dcbc6ed6714d353a783 (patch)
treeb8b93ff740ca59668e2c3f3364e23f564fc29b86
parent16818ff250b1b115a3cd0572a3e0e3f899f882fe (diff)
bump versionv0.1.97
-rw-r--r--AUTHORS3
-rw-r--r--ChangeLog22
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
5 files changed, 28 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index 3871942ed09..697aab5c8f6 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -80,3 +80,6 @@ Jonathan Rentzsch <jwr.git@redshed.net>
Ben Noordhuis <bnoordhuis@bender.(none)>
Elijah Insua <tmpvar@gmail.com>
Andrew Johnston <apjohnsto@gmail.com>
+Brian White <mscdex@mscdex.net>
+Aapo Laitinen <aapo.laitinen@iki.fi>
+Sam Hughes <sam@samuelhughes.com>
diff --git a/ChangeLog b/ChangeLog
index c78d818cef2..f9ca89d181b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,24 @@
-2010.05.21, Version 0.1.96
+2010.05.29, Version 0.1.97
+
+* HTTP throttling: outgoing messages emit 'drain' and write() returns false
+ when send buffer is full.
+
+* API: readFileSync without encoding argument now returns a Buffer
+
+* Improve Buffer C++ API; addons now compile with debugging symbols.
+
+* Improvements to path.extname() and REPL; add fs.chown().
+
+* fs.ReadStream now emits buffers, fs.readFileSync returns buffers.
+
+* Bugfix: parsing HTTP responses to HEAD requests.
+
+* Port to OpenBSD.
+
+* Upgrade V8 to 2.2.12, libeio, http-parser.
+
+
+2010.05.21, Version 0.1.96, 9514a4d5476225e8c8310ce5acae2857033bcaaa
* Thrown errors in http and socket call back get bubbled up.
diff --git a/doc/api_header.html b/doc/api_header.html
index 9f5dd49cfbb..ef34c4edc6c 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.96</div>
+ <div id="toctitle">Node v0.1.97</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 bd6436ab693..b2eb3b5f396 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.21
- <a href="http://nodejs.org/dist/node-v0.1.96.tar.gz">node-v0.1.96.tar.gz</a>
+ 2010.05.29
+ <a href="http://nodejs.org/dist/node-v0.1.97.tar.gz">node-v0.1.97.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 8f28e373432..6b0b8735e4c 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.96"
+VERSION="0.1.97"
APPNAME="node.js"
import js2c