From d1f69ef35dac810530df8249d523add168e09f03 Mon Sep 17 00:00:00 2001
From: Ryan Dahl
Date: Sat, 7 Nov 2009 20:20:30 +0100
Subject: [PATCH] bump version
---
ChangeLog | 12 +++++++++++-
doc/api.txt | 2 +-
doc/index.html | 4 ++--
wscript | 2 +-
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
-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");
git repo
- 2009.11.03
- node-v0.1.16.tar.gz
+ 2009.11.07
+ node-v0.1.17.tar.gz
Build
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