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>2009-11-28 03:49:11 +0300
committerRyan Dahl <ry@tinyclouds.org>2009-11-28 03:49:11 +0300
commit633d6be328708055897b72327b88ac88e158935f (patch)
treeb41e3cff158e04b82309da11325e488b57ddba32
parent0cea946cb9030d772897b468e2f4e32e40842c2a (diff)
bump versionv0.1.19
-rw-r--r--ChangeLog29
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
4 files changed, 32 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index a42f011620d..b4d1f047b0b 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 ecc55a97274..6387a3f86df 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 43223da3057..be70a8181f9 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>
diff --git a/wscript b/wscript
index fa666253616..439deaf928a 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