diff --git a/ChangeLog b/ChangeLog index 55994baddb02f0..b6d7a2804aa5c7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,14 @@ -2009.11.03, Version 0.1.16 +2009.11.07, Version 0.1.17 + + * Feature: process.chdir() (Brandon Beacher) + + * Revert http parser upgrade. (b893859c34f05db5c45f416949ebc0eee665cca6) + Broke keep-alive. + + * API: rename process.inherits to sys.inherits + + +2009.11.03, Version 0.1.16, 726865af7bbafe58435986f4a193ff11c84e4bfe * API: Use CommonJS-style module requiring - require("/sys.js") becomes require("sys") diff --git a/doc/api.txt b/doc/api.txt index dd3f82bcb97db0..cdf3dc672c13eb 100644 --- a/doc/api.txt +++ b/doc/api.txt @@ -1,7 +1,7 @@ NODE(1) ======= Ryan Dahl -Version, 0.1.16, 2009.11.03 +Version, 0.1.17, 2009.11.07 == NAME diff --git a/doc/index.html b/doc/index.html index 68c076a7c9a3ff..446be7ad5bedff 100644 --- a/doc/index.html +++ b/doc/index.html @@ -97,8 +97,8 @@

Download

git repo

- 2009.11.03 - node-v0.1.16.tar.gz + 2009.11.07 + node-v0.1.17.tar.gz

Build

diff --git a/wscript b/wscript index 1087d9a002f4e6..a78e69eef42182 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.16" +VERSION="0.1.17" APPNAME="node.js" import js2c