bump version
diff --git a/ChangeLog b/ChangeLog
index f8ef50f..7cba74c 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 7f9e550..0be8709 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 e72237a..49b9bc5 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -97,9 +97,9 @@
         <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 44604a8..8ac0f99 100644
--- a/wscript
+++ b/wscript
@@ -7,7 +7,7 @@
 from logging import fatal
 
 cwd = os.getcwd()
-VERSION="0.1.20"
+VERSION="0.1.21"
 APPNAME="node.js"
 
 import js2c