From e10fbab00fd8325a7d05d1f854292143b8361e1f Mon Sep 17 00:00:00 2001
From: Ryan
Date: Sat, 1 Aug 2009 14:56:45 +0200
Subject: [PATCH] bump version
---
ChangeLog | 16 ++++++++++++++++
website/api.txt | 2 +-
website/index.html | 4 ++++
wscript | 2 +-
4 files changed, 22 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 0e69601381..b5842bb142 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 90c0d1db75..865f855872 100644
--- a/website/api.txt
+++ b/website/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl
-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 ce9ab651c4..c4ef79b0af 100644
--- a/website/index.html
+++ b/website/index.html
@@ -155,6 +155,10 @@ Server running at http://127.0.0.1:8000/
git repo
+ -
+ 2009.08.01
+ node-0.1.2.tar.gz
+
-
2009.07.27
node-0.1.1.tar.gz
diff --git a/wscript b/wscript
index 915be36b6c..9c19555179 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 = '.'