bump version v0.1.2
authorRyan <ry@tinyclouds.org>
Sat, 1 Aug 2009 12:56:45 +0000 (14:56 +0200)
committerRyan <ry@tinyclouds.org>
Sat, 1 Aug 2009 12:56:45 +0000 (14:56 +0200)
ChangeLog
website/api.txt
website/index.html
wscript

index 0e69601..b5842bb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+2009.08.01, Version 0.1.2
+
+  * Add DNS API
+
+  * node.tcp.Server's backlog option is now an argument to listen()
+
+  * Upgrade V8 to 1.3.1
+
+  * Bugfix: Default to chunked for client requests without C-Length.
+
+  * Bugfix: Line numbers in stack traces.
+
+  * Bugfix: negative integers in raw encoding stream
+
+  * Bugfix: node.fs.File was not passing args to promise callbacks. 
+
 2009.07.27, Version 0.1.1
 
   * Simplify and clean up ObjectWrap.
index 90c0d1d..865f855 100644 (file)
@@ -1,7 +1,7 @@
 NODE(1)
 =======
 Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.1, 2009.07.27
+Version, 0.1.2, 2009.08.01
 
 
 == NAME
index ce9ab65..c4ef79b 100644 (file)
@@ -156,6 +156,10 @@ Server running at http://127.0.0.1:8000/</pre>
       </p>
       <ul>
         <li>
+          2009.08.01
+          <a href="http://s3.amazonaws.com/four.livejournal/20090801/node-0.1.2.tar.gz">node-0.1.2.tar.gz</a>
+        </li>
+        <li>
           2009.07.27
           <a href="http://s3.amazonaws.com/four.livejournal/20090727/node-0.1.1.tar.gz">node-0.1.1.tar.gz</a>
         </li>
diff --git a/wscript b/wscript
index 915be36..9c19555 100644 (file)
--- a/wscript
+++ b/wscript
@@ -6,7 +6,7 @@ from logging import fatal
 
 import js2c
 
-VERSION='0.1.1'
+VERSION='0.1.2'
 APPNAME='node'
 
 srcdir = '.'