From eca2de73ed786b935507fd1c6faccd8df9938fd3 Mon Sep 17 00:00:00 2001
From: Ryan Dahl
Date: Wed, 28 Oct 2009 16:36:44 +0100
Subject: [PATCH] bump version
---
ChangeLog | 21 ++++++++++++++++++++-
doc/api.txt | 2 +-
doc/index.html | 2 +-
wscript | 2 +-
4 files changed, 23 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index dae14d6b08..a4240e7133 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,23 @@
-2009.10.09, Version 0.1.14
+2009.10.28, Version 0.1.15
+
+ * Many build system fixes (esp. for OSX users)
+
+ * Feature: promise.timeout() (Felix Geisendörfer)
+
+ * Feature: Added external interface for signal handlers, process.pid, and
+ process.kill() (Brandon Beacher)
+
+ * API: Rename node.libraryPaths to require.paths
+
+ * Bugfix: 'data' event for stdio should emit a string
+
+ * Large file support
+
+ * Upgrade http_parser
+
+ * Upgrade v8 to 1.3.16
+
+2009.10.09, Version 0.1.14, b12c809bb84d1265b6a4d970a5b54ee8a4890513
* Feature: Improved addon builds with node-waf
diff --git a/doc/api.txt b/doc/api.txt
index 1c49946fcb..ac22e243ef 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl
-Version, 0.1.14, 2009.10.09
+Version, 0.1.15, 2009.10.28
== NAME
diff --git a/doc/index.html b/doc/index.html
index 10d0c4b5af..0f931f51df 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -97,7 +97,7 @@ server.listen(7000, "localhost");
2009.10.09
- node-v0.1.14.tar.gz
+ node-v0.1.15.tar.gz
Build
diff --git a/wscript b/wscript
index 083a106910..5bd6c232b5 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.14"
+VERSION="0.1.15"
APPNAME="node.js"
import js2c