diff --git a/ChangeLog b/ChangeLog index a42f011620dde0..b4d1f047b0b754 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,31 @@ -2009.11.17, Version 0.1.18 +2009.11.28, Version 0.1.19 + + * Feature: Initial TLS support for TCP servers and clients. + (Rhys Jones) + + * Add options to process.watchFile() + + * Add process.umask() (Friedemann Altrock) + + * Bugfix: only detach timers when active. + + * Bugfix: lib/file.js write(), shouldn't always emit errors or success + (onne@onnlucky.com) + + * Bugfix: Memory leak in fs.write + (Reported by onne@onnlucky.com) + + * Bugfix: Fix regular expressions detecting outgoing message headers. + (Reported by Elliott Cable) + + * Improvements to Multipart parser (Felix Geisendörfer) + + * New HTTP parser + + * Upgrade v8 to 2.0.2 + + +2009.11.17, Version 0.1.18, 027829d2853a14490e6de9fc5f7094652d045ab8 * Feature: process.watchFile() process.unwatchFile() diff --git a/doc/api.txt b/doc/api.txt index ecc55a972745f3..6387a3f86df7ea 100644 --- a/doc/api.txt +++ b/doc/api.txt @@ -1,7 +1,7 @@ NODE(1) ======= Ryan Dahl -Version, 0.1.18, 2009.11.17 +Version, 0.1.19, 2009.11.28 == NAME diff --git a/doc/index.html b/doc/index.html index 43223da3057c31..be70a8181f9bcf 100644 --- a/doc/index.html +++ b/doc/index.html @@ -97,8 +97,8 @@

Download

git repo

- 2009.11.17 - node-v0.1.18.tar.gz + 2009.11.28 + node-v0.1.19.tar.gz

Build

diff --git a/wscript b/wscript index fa666253616f7e..439deaf928a7cb 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.18" +VERSION="0.1.19" APPNAME="node.js" import js2c