From 0c1aa36835fa6a3557843dcbc6ed6714d353a783 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 29 May 2010 19:32:33 -0700 Subject: [PATCH] bump version --- AUTHORS | 3 +++ ChangeLog | 22 +++++++++++++++++++++- doc/api_header.html | 2 +- doc/index.html | 4 ++-- wscript | 2 +- 5 files changed, 28 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index 3871942ed09ca5..697aab5c8f6034 100644 --- a/AUTHORS +++ b/AUTHORS @@ -80,3 +80,6 @@ Jonathan Rentzsch Ben Noordhuis Elijah Insua Andrew Johnston +Brian White +Aapo Laitinen +Sam Hughes diff --git a/ChangeLog b/ChangeLog index c78d818cef21c0..f9ca89d181bd5e 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 9f5dd49cfbbad9..ef34c4edc6c960 100644 --- a/doc/api_header.html +++ b/doc/api_header.html @@ -295,7 +295,7 @@
-
Node v0.1.96
+
Node v0.1.97
diff --git a/doc/index.html b/doc/index.html index bd6436ab69399c..b2eb3b5f396417 100644 --- a/doc/index.html +++ b/doc/index.html @@ -95,8 +95,8 @@

Download

git repo

- 2010.05.21 - node-v0.1.96.tar.gz + 2010.05.29 + node-v0.1.97.tar.gz

Historical: versions, docs

diff --git a/wscript b/wscript index 8f28e3734326db..6b0b8735e4c724 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