Skip to content

Commit d79b6e9

Browse files
committed
bump version
1 parent e7096fd commit d79b6e9

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.09.30, Version 0.1.13
1+
2009.10.09, Version 0.1.14
2+
3+
* Feature: Improved addon builds with node-waf
4+
5+
* Feature: node.SignalHandler (Brandon Beacher)
6+
7+
* Feature: Enable V8 debugging (but still need to make a debugger)
8+
9+
* API: Rename library /utils.js to /sys.js
10+
11+
* Clean up Node's build system
12+
13+
* Don't use parseUri for HTTP server
14+
15+
* Remove node.pc
16+
17+
* Don't use /bin/sh to create child process except with exec()
18+
19+
* API: Add __module to reference current module
20+
21+
* API: Remove include() add node.mixin()
22+
23+
* Normalize http headers; "Content-Length" becomes "content-length"
24+
25+
* Upgrade V8 to 1.3.15
26+
27+
28+
2009.09.30, Version 0.1.13, 58493bb05b3da3dc8051fabc0bdea9e575c1a107
229

330
* Feature: Multipart stream parser (Felix Geisendörfer)
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.13, 2009.09.30
4+
Version, 0.1.14, 2009.10.09
55

66

77
== NAME

doc/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ <h2 id="download">Download</h2>
149149
<a href="http://github.com/ry/node/tree/master">git repo</a>
150150
</p>
151151
<p>
152-
2009.09.30
153-
<a href="http://s3.amazonaws.com/four.livejournal/20090930/node-0.1.13.tar.gz">node-0.1.13.tar.gz</a>
152+
2009.10.09
153+
<a href="http://s3.amazonaws.com/four.livejournal/20091009/node-v0.1.14.tar.gz">node-v0.1.14.tar.gz</a>
154154
</p>
155155

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

wscript

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

1010
cwd = os.getcwd()
11-
VERSION="0.1.13"
11+
VERSION="0.1.14"
1212
APPNAME="node.js"
1313

1414
import js2c

0 commit comments

Comments
 (0)