summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2009-12-06 17:53:52 +0100
committerRyan Dahl <ry@tinyclouds.org>2009-12-06 17:59:37 +0100
commitc6affb64f96a403a14d20035e7fbd6d0ce089db5 (patch)
tree8cc677edba795cd275793e08bda5e141cb975867
parent34c02357ff8e00c35e493754943f599dba0b0f29 (diff)
downloadnode-c6affb64f96a403a14d20035e7fbd6d0ce089db5.tar.gz
bump versionv0.1.21
-rw-r--r--ChangeLog19
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
4 files changed, 22 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index f8ef50f47..7cba74cab 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,21 @@
-2009.11.28, Version 0.1.20
+2009.12.06, Version 0.1.21
+
+ * Feature: Add HTTP client TLS support (Rhys Jones)
+
+ * Bugfix: use --jobs=1 with WAF
+
+ * Bugfix: Don't use chunked encoding for 1.0 requests
+
+ * Bugfix: Duplicated header weren't handled correctly
+
+ * Improve sys.inspect (Xavier Shay)
+
+ * Upgrade v8 to 2.0.3
+
+ * Use CommonJS assert API (Felix Geisendörfer, Karl Guertin)
+
+
+2009.11.28, Version 0.1.20, aa42c6790da8ed2cd2b72051c07f6251fe1724d8
* Add gnutls version to configure script
diff --git a/doc/api.txt b/doc/api.txt
index 7f9e550e3..0be870926 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.20, 2009.11.28
+Version, 0.1.21, 2009.12.06
== NAME
diff --git a/doc/index.html b/doc/index.html
index e72237a18..49b9bc58a 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -97,9 +97,9 @@ server.listen(7000, "localhost");</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2009.11.28
+ 2009.12.06
<a
- href="http://s3.amazonaws.com/four.livejournal/20091128/node-v0.1.20.tar.gz">node-v0.1.20.tar.gz</a>
+ href="http://s3.amazonaws.com/four.livejournal/20091206/node-v0.1.21.tar.gz">node-v0.1.21.tar.gz</a>
</p>
<h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index 44604a854..8ac0f9901 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.20"
+VERSION="0.1.21"
APPNAME="node.js"
import js2c