Skip to content

Commit 726865a

Browse files
committed
bump version
1 parent b3b3cfe commit 726865a

File tree

4 files changed

+31
-5
lines changed

4 files changed

+31
-5
lines changed

ChangeLog

+27-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
1-
2009.10.28, Version 0.1.15
1+
2009.11.03, Version 0.1.16
2+
3+
* API: Use CommonJS-style module requiring
4+
- require("/sys.js") becomes require("sys")
5+
- require("circle.js") becomes require("./circle")
6+
- process.path.join() becomes require("path").join()
7+
- __module becomes module
8+
9+
* API: Many namespacing changes
10+
- Move node.* into process.*
11+
- Move node.dns into module "dns"
12+
- Move node.fs into module "posix"
13+
- process is no longer the global object. GLOBAL is.
14+
15+
For more information on the API changes see:
16+
http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/6
17+
http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/14
18+
19+
* Feature: process.platform, process.memoryUsage()
20+
21+
* Feature: promise.cancel() (Felix Geisendörfer)
22+
23+
* Upgrade V8 to 1.3.18
24+
25+
26+
2009.10.28, Version 0.1.15, eca2de73ed786b935507fd1c6faccd8df9938fd3
227

328
* Many build system fixes (esp. for OSX users)
429

@@ -17,6 +42,7 @@
1742

1843
* Upgrade v8 to 1.3.16
1944

45+
2046
2009.10.09, Version 0.1.14, b12c809bb84d1265b6a4d970a5b54ee8a4890513
2147

2248
* Feature: Improved addon builds with node-waf

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.15, 2009.10.28
4+
Version, 0.1.16, 2009.11.03
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.10.09
101-
<a href="http://s3.amazonaws.com/four.livejournal/20091028/node-v0.1.15.tar.gz">node-v0.1.15.tar.gz</a>
100+
2009.11.03
101+
<a href="http://s3.amazonaws.com/four.livejournal/20091103/node-v0.1.16.tar.gz">node-v0.1.16.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.15"
10+
VERSION="0.1.16"
1111
APPNAME="node.js"
1212

1313
import js2c

0 commit comments

Comments
 (0)