Skip to content

Commit 027829d

Browse files
committedNov 17, 2009
bump version
1 parent 6cb0e0e commit 027829d

File tree

4 files changed

+33
-8
lines changed

4 files changed

+33
-8
lines changed
 

‎ChangeLog

+29-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
1-
2009.11.07, Version 0.1.17
1+
2009.11.17, Version 0.1.18
2+
3+
* Feature: process.watchFile() process.unwatchFile()
4+
5+
* Feature: "uncaughtException" event on process
6+
(Felix Geisendörfer)
7+
8+
* Feature: 'drain' event to tcp.Connection
9+
10+
* Bugfix: Promise.timeout() blocked the event loop
11+
(Felix Geisendörfer)
12+
13+
* Bugfix: sendBody() and chunked utf8 strings
14+
(Felix Geisendörfer)
15+
16+
* Supply the strerror as a second arg to the tcp.Connection close
17+
event (Johan Sørensen)
18+
19+
* Add EventEmitter.removeListener (frodenius@gmail.com)
20+
21+
* Format JSON for inspecting objects (Felix Geisendörfer)
22+
23+
* Upgrade libev to latest CVS
24+
25+
26+
2009.11.07, Version 0.1.17, d1f69ef35dac810530df8249d523add168e09f03
227

328
* Feature: process.chdir() (Brandon Beacher)
429

@@ -22,9 +47,9 @@
2247
- Move node.fs into module "posix"
2348
- process is no longer the global object. GLOBAL is.
2449

25-
For more information on the API changes see:
26-
http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/6
27-
http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/14
50+
For more information on the API changes see:
51+
http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/6
52+
http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/14
2853

2954
* Feature: process.platform, process.memoryUsage()
3055

‎doc/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.17, 2009.11.07
4+
Version, 0.1.18, 2009.11.17
55

66

77
== NAME

‎doc/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ <h2 id="download">Download</h2>
9797
<a href="http://github.com/ry/node/tree/master">git repo</a>
9898
</p>
9999
<p>
100-
2009.11.07
101-
<a href="http://s3.amazonaws.com/four.livejournal/20091107/node-v0.1.17.tar.gz">node-v0.1.17.tar.gz</a>
100+
2009.11.17
101+
<a href="http://s3.amazonaws.com/four.livejournal/20091117/node-v0.1.18.tar.gz">node-v0.1.18.tar.gz</a>
102102
</p>
103103

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

‎wscript

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from os.path import join, dirname, abspath
77
from logging import fatal
88

99
cwd = os.getcwd()
10-
VERSION="0.1.17"
10+
VERSION="0.1.18"
1111
APPNAME="node.js"
1212

1313
import js2c

0 commit comments

Comments
 (0)
Please sign in to comment.