diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2009-11-28 01:49:11 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2009-11-28 01:49:11 +0100 |
commit | 633d6be328708055897b72327b88ac88e158935f (patch) | |
tree | b41e3cff158e04b82309da11325e488b57ddba32 | |
parent | 0cea946cb9030d772897b468e2f4e32e40842c2a (diff) | |
download | nodejs-633d6be328708055897b72327b88ac88e158935f.tar.gz nodejs-633d6be328708055897b72327b88ac88e158935f.tar.bz2 nodejs-633d6be328708055897b72327b88ac88e158935f.zip |
bump versionv0.1.19
-rw-r--r-- | ChangeLog | 29 | ||||
-rw-r--r-- | doc/api.txt | 2 | ||||
-rw-r--r-- | doc/index.html | 4 | ||||
-rw-r--r-- | wscript | 2 |
4 files changed, 32 insertions, 5 deletions
@@ -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 ecc55a972..6387a3f86 100644 --- a/doc/api.txt +++ b/doc/api.txt @@ -1,7 +1,7 @@ NODE(1) ======= Ryan Dahl <ry@tinyclouds.org> -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 43223da30..be70a8181 100644 --- a/doc/index.html +++ b/doc/index.html @@ -97,8 +97,8 @@ server.listen(7000, "localhost");</pre> <a href="http://github.com/ry/node/tree/master">git repo</a> </p> <p> - 2009.11.17 - <a href="http://s3.amazonaws.com/four.livejournal/20091117/node-v0.1.18.tar.gz">node-v0.1.18.tar.gz</a> + 2009.11.28 + <a href="http://s3.amazonaws.com/four.livejournal/20091128/node-v0.1.19.tar.gz">node-v0.1.19.tar.gz</a> </p> <h2 id="build">Build</h2> @@ -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 |