Skip to content

Commit 12bb0d4

Browse files
committedSep 11, 2009
bump version
1 parent 5629fd5 commit 12bb0d4

File tree

5 files changed

+30
-9
lines changed

5 files changed

+30
-9
lines changed
 

‎ChangeLog

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
1-
2009.09.05, Version 0.1.9
1+
2009.09.11, Version 0.1.10
2+
3+
* Feature: raw string encoding "raws"
4+
5+
* Feature: access to environ through "ENV"
6+
7+
* Feature: add isDirectory, isFile, isSocket, ... methods
8+
to stats object.
9+
10+
* Bugfix: Internally use full paths when loading modules
11+
this fixes a shebang loading problem.
12+
13+
* Bugfix: Add '--' command line argument for seperating v8
14+
args from program args.
15+
16+
* Add man page.
17+
18+
* Add node-repl
19+
20+
* Upgrade v8 to 1.3.10
21+
22+
2009.09.05, Version 0.1.9, d029764bb32058389ecb31ed54a5d24d2915ad4c
223

324
* Bugfix: Compile on Snow Leopard.
425

‎doc/api.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
<h1>NODE(1)</h1>
2020
<span id="author">Ryan Dahl</span><br />
2121
<span id="email"><tt>&lt;<a href="mailto:ry@tinyclouds.org">ry@tinyclouds.org</a>&gt;</tt></span><br />
22-
<span id="revnumber">version 0.1.9,</span>
23-
<span id="revdate">2009.09.05</span>
22+
<span id="revnumber">version 0.1.10,</span>
23+
<span id="revdate">2009.09.11</span>
2424
<div id="toc">
2525
<div id="toctitle">Table of Contents</div>
2626
<noscript><p><b>JavaScript must be enabled in your browser to display the table of contents.</b></p></noscript>
@@ -1862,8 +1862,8 @@ <h2 id="_extension_api">Extension API</h2>
18621862
</div>
18631863
<div id="footer">
18641864
<div id="footer-text">
1865-
Version 0.1.9<br />
1866-
Last updated 2009-09-11 20:58:54 CEST
1865+
Version 0.1.10<br />
1866+
Last updated 2009-09-11 21:05:26 CEST
18671867
</div>
18681868
</div>
18691869
</body>

‎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.9, 2009.09.05
4+
Version, 0.1.10, 2009.09.11
55

66

77
== NAME

‎doc/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,8 @@ <h2 id="download">Download</h2>
156156
<a href="http://github.com/ry/node/tree/master">git repo</a>
157157
</p>
158158
<p>
159-
2009.09.05
160-
<a href="http://s3.amazonaws.com/four.livejournal/20090905/node-0.1.9.tar.gz">node-0.1.9.tar.gz</a>
159+
2009.09.11
160+
<a href="http://s3.amazonaws.com/four.livejournal/20090911/node-0.1.10.tar.gz">node-0.1.10.tar.gz</a>
161161
</p>
162162

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

‎wscript

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

9-
VERSION="0.1.9"
9+
VERSION="0.1.10"
1010
APPNAME="node.js"
1111

1212
import js2c

0 commit comments

Comments
 (0)
Please sign in to comment.