summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog16
-rw-r--r--website/api.txt2
-rw-r--r--website/index.html4
-rw-r--r--wscript2
4 files changed, 22 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0e6960138..b5842bb14 100644
--- 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.
diff --git a/website/api.txt b/website/api.txt
index 90c0d1db7..865f85587 100644
--- a/website/api.txt
+++ b/website/api.txt
@@ -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
diff --git a/website/index.html b/website/index.html
index ce9ab651c..c4ef79b0a 100644
--- a/website/index.html
+++ b/website/index.html
@@ -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 915be36b6..9c1955517 100644
--- 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 = '.'