Skip to content

Commit 5ddc4f5

Browse files
committed
bump version
1 parent ab530bb commit 5ddc4f5

File tree

6 files changed

+32
-11
lines changed

6 files changed

+32
-11
lines changed

ChangeLog

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
1-
2009.09.11, Version 0.1.10
1+
2009.09.18, Version 0.1.11
2+
3+
* API: default to utf8 encoding for node.fs.cat()
4+
5+
* API: add node.exec()
6+
7+
* API: node.fs.read() takes a normal encoding parameter.
8+
9+
* API: Change arguments of emit(), emitSuccess(), emitError()
10+
11+
* Bugfix: node.fs.write() was stack allocating buffer.
12+
13+
* Bugfix: ReportException shouldn't forget the top frame.
14+
15+
* Improve buffering for HTTP outgoing messages
16+
17+
* Fix and reenable x64 macintosh build.
18+
19+
* Upgrade v8 to 1.3.11
20+
21+
22+
2009.09.11, Version 0.1.10, 12bb0d46ce761e3d00a27170e63b40408c15b558
223

324
* Feature: raw string encoding "raws"
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:[email protected]">[email protected]</a>&gt;</tt></span><br />
22-
<span id="revnumber">version 0.1.10,</span>
23-
<span id="revdate">2009.09.11</span>
22+
<span id="revnumber">version 0.1.11,</span>
23+
<span id="revdate">2009.09.18</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>
@@ -1929,8 +1929,8 @@ <h2 id="_extension_api">Extension API</h2>
19291929
</div>
19301930
<div id="footer">
19311931
<div id="footer-text">
1932-
Version 0.1.10<br />
1933-
Last updated 2009-09-17 15:13:13 CEST
1932+
Version 0.1.11<br />
1933+
Last updated 2009-09-18 18:31:06 CEST
19341934
</div>
19351935
</div>
19361936
</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.10, 2009.09.11
4+
Version, 0.1.11, 2009.09.18
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.11
160-
<a href="http://s3.amazonaws.com/four.livejournal/20090911/node-0.1.10.tar.gz">node-0.1.10.tar.gz</a>
159+
2009.09.18
160+
<a href="http://s3.amazonaws.com/four.livejournal/20090918/node-0.1.11.tar.gz">node-0.1.11.tar.gz</a>
161161
</p>
162162

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

doc/node.1

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
.\" Title: node
22
.\" Author:
33
.\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/>
4-
.\" Date: 09/17/2009
4+
.\" Date: 09/18/2009
55
.\" Manual:
66
.\" Source:
77
.\"
8-
.TH "NODE" "1" "09/17/2009" "" ""
8+
.TH "NODE" "1" "09/18/2009" "" ""
99
.\" disable hyphenation
1010
.nh
1111
.\" disable justification (adjust text to left margin only)

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.10"
9+
VERSION="0.1.11"
1010
APPNAME="node.js"
1111

1212
import js2c

0 commit comments

Comments
 (0)