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-09 20:10:59 +0400
committerRyan Dahl <ry@tinyclouds.org>2009-10-09 20:15:16 +0400
commitd79b6e9f7ffad4c6aabbe5bd89108e2005366469 (patch)
tree74144ea2c589448a9f9bf190ad6b86c5f69820dc
parente7096fd769c060a0f596b0d642ce7c3b6ae65412 (diff)
bump versionv0.1.14
-rw-r--r--ChangeLog29
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
4 files changed, 32 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 2aeb9ea2b7f..3a520beaf76 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,31 @@
-2009.09.30, Version 0.1.13
+2009.10.09, Version 0.1.14
+
+ * Feature: Improved addon builds with node-waf
+
+ * Feature: node.SignalHandler (Brandon Beacher)
+
+ * Feature: Enable V8 debugging (but still need to make a debugger)
+
+ * API: Rename library /utils.js to /sys.js
+
+ * Clean up Node's build system
+
+ * Don't use parseUri for HTTP server
+
+ * Remove node.pc
+
+ * Don't use /bin/sh to create child process except with exec()
+
+ * API: Add __module to reference current module
+
+ * API: Remove include() add node.mixin()
+
+ * Normalize http headers; "Content-Length" becomes "content-length"
+
+ * Upgrade V8 to 1.3.15
+
+
+2009.09.30, Version 0.1.13, 58493bb05b3da3dc8051fabc0bdea9e575c1a107
* Feature: Multipart stream parser (Felix Geisendörfer)
diff --git a/doc/api.txt b/doc/api.txt
index 1ba351ceb3f..ba27d91fdc5 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.13, 2009.09.30
+Version, 0.1.14, 2009.10.09
== NAME
diff --git a/doc/index.html b/doc/index.html
index fb74067176a..d767e4d329a 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -149,8 +149,8 @@ Server running at http://127.0.0.1:8000/</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2009.09.30
- <a href="http://s3.amazonaws.com/four.livejournal/20090930/node-0.1.13.tar.gz">node-0.1.13.tar.gz</a>
+ 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>
</p>
<h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index eea991f7fe2..4c535fc7e19 100644
--- a/wscript
+++ b/wscript
@@ -8,7 +8,7 @@ from os.path import join, dirname, abspath
from logging import fatal
cwd = os.getcwd()
-VERSION="0.1.13"
+VERSION="0.1.14"
APPNAME="node.js"
import js2c