Skip to content

Commit 633d6be

Browse files
committed
bump version
1 parent 0cea946 commit 633d6be

File tree

4 files changed

+32
-5
lines changed

4 files changed

+32
-5
lines changed

ChangeLog

+28-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,31 @@
1-
2009.11.17, Version 0.1.18
1+
2009.11.28, Version 0.1.19
2+
3+
* Feature: Initial TLS support for TCP servers and clients.
4+
(Rhys Jones)
5+
6+
* Add options to process.watchFile()
7+
8+
* Add process.umask() (Friedemann Altrock)
9+
10+
* Bugfix: only detach timers when active.
11+
12+
* Bugfix: lib/file.js write(), shouldn't always emit errors or success
13+
14+
15+
* Bugfix: Memory leak in fs.write
16+
(Reported by [email protected])
17+
18+
* Bugfix: Fix regular expressions detecting outgoing message headers.
19+
(Reported by Elliott Cable)
20+
21+
* Improvements to Multipart parser (Felix Geisendörfer)
22+
23+
* New HTTP parser
24+
25+
* Upgrade v8 to 2.0.2
26+
27+
28+
2009.11.17, Version 0.1.18, 027829d2853a14490e6de9fc5f7094652d045ab8
229

330
* Feature: process.watchFile() process.unwatchFile()
431

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.18, 2009.11.17
4+
Version, 0.1.19, 2009.11.28
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.17
101-
<a href="http://s3.amazonaws.com/four.livejournal/20091117/node-v0.1.18.tar.gz">node-v0.1.18.tar.gz</a>
100+
2009.11.28
101+
<a href="http://s3.amazonaws.com/four.livejournal/20091128/node-v0.1.19.tar.gz">node-v0.1.19.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.18"
10+
VERSION="0.1.19"
1111
APPNAME="node.js"
1212

1313
import js2c

0 commit comments

Comments
 (0)