Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2009-10-28 18:36:44 +0300
committerRyan Dahl <ry@tinyclouds.org>2009-10-28 18:36:44 +0300
commiteca2de73ed786b935507fd1c6faccd8df9938fd3 (patch)
tree736836f4dc777fa92c5bd7ad9dc89b56fa905940
parent910c627fc647bdc6e5747b8135f89ebfdc94d40e (diff)
bump versionv0.1.15
-rw-r--r--ChangeLog21
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html2
-rw-r--r--wscript2
4 files changed, 23 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index dae14d6b08d..a4240e7133e 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 1c49946fcb3..ac22e243efd 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
-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 10d0c4b5afa..0f931f51dff 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -97,7 +97,7 @@ server.listen(7000, "localhost");</pre>
</p>
<p>
2009.10.09
- <a href="http://s3.amazonaws.com/four.livejournal/20091009/node-v0.1.14.tar.gz">node-v0.1.14.tar.gz</a>
+ <a href="http://s3.amazonaws.com/four.livejournal/20091028/node-v0.1.15.tar.gz">node-v0.1.15.tar.gz</a>
</p>
<h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index 083a106910f..5bd6c232b59 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