summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan <ry@tinyclouds.org>2009-08-27 12:31:52 +0200
committerRyan <ry@tinyclouds.org>2009-08-27 12:31:52 +0200
commit31db4f1ed837f3835937f60d31368bdb31998386 (patch)
treeda240f27aae920f08c59e2facc9e429bb169b623
parent00a03dfee2fa86c2aca569b0ef80769a7a19fa22 (diff)
downloadnode-31db4f1ed837f3835937f60d31368bdb31998386.tar.gz
bump versionv0.1.7
-rw-r--r--ChangeLog26
-rw-r--r--src/node.h2
-rw-r--r--website/api.txt2
-rw-r--r--website/index.html4
4 files changed, 29 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 18ec119b4..c9d2b7479 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,28 @@
-2009.08.21, Version 0.1.6, 9c97b1db3099d61cd292aa59ec2227a619f3a7ab
+2009.08.27, Version 0.1.7
+
+ * Feature: global 'process' object. Emits "exit".
+
+ * Feature: promise.wait()
+
+ * Feature: node.stdio
+
+ * Feature: EventEmitters emit "newListener" when listeners are added
+
+ * API: Use flat object instead of array-of-arrays for HTTP headers.
+
+ * API: Remove buffered file object (node.File)
+
+ * API: require(), include() are synchronous. (Uses continuations.)
+
+ * API: Deprecate onLoad and onExit.
+
+ * API: Rename node.Process to node.ChildProcess
+
+ * Refactor node.Process to take advantage of evcom_reader/writer.
+
+ * Upgrade v8 to 1.3.7
+
+2009.08.22, Version 0.1.6, 9c97b1db3099d61cd292aa59ec2227a619f3a7ab
* Bugfix: Ignore SIGPIPE.
diff --git a/src/node.h b/src/node.h
index afc4b8639..6462bc45b 100644
--- a/src/node.h
+++ b/src/node.h
@@ -10,7 +10,7 @@
namespace node {
-#define NODE_VERSION "0.1.6"
+#define NODE_VERSION "0.1.7"
#define NODE_DEFINE_CONSTANT(target, constant) \
(target)->Set(v8::String::NewSymbol(#constant), \
diff --git a/website/api.txt b/website/api.txt
index ddfd8f5f3..6ae50efdb 100644
--- a/website/api.txt
+++ b/website/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.6, 2009.08.22
+Version, 0.1.7, 2009.08.27
== Name
diff --git a/website/index.html b/website/index.html
index a455650e8..bea70807d 100644
--- a/website/index.html
+++ b/website/index.html
@@ -154,8 +154,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.08.22
- <a href="http://s3.amazonaws.com/four.livejournal/20090822/node-0.1.6.tar.gz">node-0.1.6.tar.gz</a>
+ 2009.08.27
+ <a href="http://s3.amazonaws.com/four.livejournal/20090827/node-0.1.7.tar.gz">node-0.1.7.tar.gz</a>
</p>
<h2 id="build">Build</h2>