summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2009-11-07 20:20:30 +0100
committerRyan Dahl <ry@tinyclouds.org>2009-11-07 20:20:30 +0100
commitd1f69ef35dac810530df8249d523add168e09f03 (patch)
treeaddeaff3bded2618b7a4eb0882d7943c45220b7c
parenta021db151a6c890281e4367d2a2319290c70576d (diff)
downloadnode-new-0.1.17.tar.gz
bump versionv0.1.17
-rw-r--r--ChangeLog12
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
4 files changed, 15 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 55994baddb..b6d7a2804a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,14 @@
-2009.11.03, Version 0.1.16
+2009.11.07, Version 0.1.17
+
+ * Feature: process.chdir() (Brandon Beacher)
+
+ * Revert http parser upgrade. (b893859c34f05db5c45f416949ebc0eee665cca6)
+ Broke keep-alive.
+
+ * API: rename process.inherits to sys.inherits
+
+
+2009.11.03, Version 0.1.16, 726865af7bbafe58435986f4a193ff11c84e4bfe
* API: Use CommonJS-style module requiring
- require("/sys.js") becomes require("sys")
diff --git a/doc/api.txt b/doc/api.txt
index dd3f82bcb9..cdf3dc672c 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.16, 2009.11.03
+Version, 0.1.17, 2009.11.07
== NAME
diff --git a/doc/index.html b/doc/index.html
index 68c076a7c9..446be7ad5b 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -97,8 +97,8 @@ server.listen(7000, "localhost");</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2009.11.03
- <a href="http://s3.amazonaws.com/four.livejournal/20091103/node-v0.1.16.tar.gz">node-v0.1.16.tar.gz</a>
+ 2009.11.07
+ <a href="http://s3.amazonaws.com/four.livejournal/20091107/node-v0.1.17.tar.gz">node-v0.1.17.tar.gz</a>
</p>
<h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index 1087d9a002..a78e69eef4 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.16"
+VERSION="0.1.17"
APPNAME="node.js"
import js2c