summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2009-11-28 17:04:42 +0100
committerRyan Dahl <ry@tinyclouds.org>2009-11-28 17:04:42 +0100
commitaa42c6790da8ed2cd2b72051c07f6251fe1724d8 (patch)
treefb37a6f92823b4017f92110cef5ba7bd4bfcf8d5
parent38e425d9bfe3e5fc728576f623fdedf27432f106 (diff)
downloadnode-new-0.1.20.tar.gz
bump versionv0.1.20
-rw-r--r--ChangeLog12
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html3
-rw-r--r--wscript2
4 files changed, 15 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index b4d1f047b0..f8ef50f478 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,14 @@
-2009.11.28, Version 0.1.19
+2009.11.28, Version 0.1.20
+
+ * Add gnutls version to configure script
+
+ * Add V8 heap info to process.memoryUsage()
+
+ * process.watchFile callback has 2 arguments with the stat object
+ (choonkeat@gmail.com)
+
+
+2009.11.28, Version 0.1.19, 633d6be328708055897b72327b88ac88e158935f
* Feature: Initial TLS support for TCP servers and clients.
(Rhys Jones)
diff --git a/doc/api.txt b/doc/api.txt
index ed3cc5161d..7f9e550e36 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.19, 2009.11.28
+Version, 0.1.20, 2009.11.28
== NAME
diff --git a/doc/index.html b/doc/index.html
index be70a8181f..e72237a18c 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -98,7 +98,8 @@ server.listen(7000, "localhost");</pre>
</p>
<p>
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>
+ <a
+ href="http://s3.amazonaws.com/four.livejournal/20091128/node-v0.1.20.tar.gz">node-v0.1.20.tar.gz</a>
</p>
<h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index bf85daa550..44604a854a 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.19"
+VERSION="0.1.20"
APPNAME="node.js"
import js2c