Skip to content

Commit 31db4f1

Browse files
committedAug 27, 2009
bump version
1 parent 00a03df commit 31db4f1

File tree

4 files changed

+29
-5
lines changed

4 files changed

+29
-5
lines changed
 

‎ChangeLog

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,28 @@
1-
2009.08.21, Version 0.1.6, 9c97b1db3099d61cd292aa59ec2227a619f3a7ab
1+
2009.08.27, Version 0.1.7
2+
3+
* Feature: global 'process' object. Emits "exit".
4+
5+
* Feature: promise.wait()
6+
7+
* Feature: node.stdio
8+
9+
* Feature: EventEmitters emit "newListener" when listeners are added
10+
11+
* API: Use flat object instead of array-of-arrays for HTTP headers.
12+
13+
* API: Remove buffered file object (node.File)
14+
15+
* API: require(), include() are synchronous. (Uses continuations.)
16+
17+
* API: Deprecate onLoad and onExit.
18+
19+
* API: Rename node.Process to node.ChildProcess
20+
21+
* Refactor node.Process to take advantage of evcom_reader/writer.
22+
23+
* Upgrade v8 to 1.3.7
24+
25+
2009.08.22, Version 0.1.6, 9c97b1db3099d61cd292aa59ec2227a619f3a7ab
226

327
* Bugfix: Ignore SIGPIPE.
428

‎src/node.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
namespace node {
1212

13-
#define NODE_VERSION "0.1.6"
13+
#define NODE_VERSION "0.1.7"
1414

1515
#define NODE_DEFINE_CONSTANT(target, constant) \
1616
(target)->Set(v8::String::NewSymbol(#constant), \

‎website/api.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
NODE(1)
22
=======
33
Ryan Dahl <ry@tinyclouds.org>
4-
Version, 0.1.6, 2009.08.22
4+
Version, 0.1.7, 2009.08.27
55

66

77
== Name

‎website/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ <h2 id="download">Download</h2>
154154
<a href="http://github.com/ry/node/tree/master">git repo</a>
155155
</p>
156156
<p>
157-
2009.08.22
158-
<a href="http://s3.amazonaws.com/four.livejournal/20090822/node-0.1.6.tar.gz">node-0.1.6.tar.gz</a>
157+
2009.08.27
158+
<a href="http://s3.amazonaws.com/four.livejournal/20090827/node-0.1.7.tar.gz">node-0.1.7.tar.gz</a>
159159
</p>
160160

161161
<h2 id="build">Build</h2>

0 commit comments

Comments
 (0)
Please sign in to comment.