Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Sep 18, 2009
1 parent ab530bb commit 5ddc4f5
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 11 deletions.
23 changes: 22 additions & 1 deletion ChangeLog
@@ -1,4 +1,25 @@
2009.09.11, Version 0.1.10 2009.09.18, Version 0.1.11

* API: default to utf8 encoding for node.fs.cat()

* API: add node.exec()

* API: node.fs.read() takes a normal encoding parameter.

* API: Change arguments of emit(), emitSuccess(), emitError()

* Bugfix: node.fs.write() was stack allocating buffer.

* Bugfix: ReportException shouldn't forget the top frame.

* Improve buffering for HTTP outgoing messages

* Fix and reenable x64 macintosh build.

* Upgrade v8 to 1.3.11


2009.09.11, Version 0.1.10, 12bb0d46ce761e3d00a27170e63b40408c15b558


* Feature: raw string encoding "raws" * Feature: raw string encoding "raws"


Expand Down
8 changes: 4 additions & 4 deletions doc/api.html
Expand Up @@ -19,8 +19,8 @@
<h1>NODE(1)</h1> <h1>NODE(1)</h1>
<span id="author">Ryan Dahl</span><br /> <span id="author">Ryan Dahl</span><br />
<span id="email"><tt>&lt;<a href="mailto:ry@tinyclouds.org">ry@tinyclouds.org</a>&gt;</tt></span><br /> <span id="email"><tt>&lt;<a href="mailto:ry@tinyclouds.org">ry@tinyclouds.org</a>&gt;</tt></span><br />
<span id="revnumber">version 0.1.10,</span> <span id="revnumber">version 0.1.11,</span>
<span id="revdate">2009.09.11</span> <span id="revdate">2009.09.18</span>
<div id="toc"> <div id="toc">
<div id="toctitle">Table of Contents</div> <div id="toctitle">Table of Contents</div>
<noscript><p><b>JavaScript must be enabled in your browser to display the table of contents.</b></p></noscript> <noscript><p><b>JavaScript must be enabled in your browser to display the table of contents.</b></p></noscript>
Expand Down Expand Up @@ -1929,8 +1929,8 @@ <h2 id="_extension_api">Extension API</h2>
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Version 0.1.10<br /> Version 0.1.11<br />
Last updated 2009-09-17 15:13:13 CEST Last updated 2009-09-18 18:31:06 CEST
</div> </div>
</div> </div>
</body> </body>
Expand Down
2 changes: 1 addition & 1 deletion doc/api.txt
@@ -1,7 +1,7 @@
NODE(1) NODE(1)
======= =======
Ryan Dahl <ry@tinyclouds.org> Ryan Dahl <ry@tinyclouds.org>
Version, 0.1.10, 2009.09.11 Version, 0.1.11, 2009.09.18




== NAME == NAME
Expand Down
4 changes: 2 additions & 2 deletions doc/index.html
Expand Up @@ -156,8 +156,8 @@ <h2 id="download">Download</h2>
<a href="http://github.com/ry/node/tree/master">git repo</a> <a href="http://github.com/ry/node/tree/master">git repo</a>
</p> </p>
<p> <p>
2009.09.11 2009.09.18
<a href="http://s3.amazonaws.com/four.livejournal/20090911/node-0.1.10.tar.gz">node-0.1.10.tar.gz</a> <a href="http://s3.amazonaws.com/four.livejournal/20090918/node-0.1.11.tar.gz">node-0.1.11.tar.gz</a>
</p> </p>


<h2 id="build">Build</h2> <h2 id="build">Build</h2>
Expand Down
4 changes: 2 additions & 2 deletions doc/node.1
@@ -1,11 +1,11 @@
.\" Title: node .\" Title: node
.\" Author: .\" Author:
.\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/> .\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/>
.\" Date: 09/17/2009 .\" Date: 09/18/2009
.\" Manual: .\" Manual:
.\" Source: .\" Source:
.\" .\"
.TH "NODE" "1" "09/17/2009" "" "" .TH "NODE" "1" "09/18/2009" "" ""
.\" disable hyphenation .\" disable hyphenation
.nh .nh
.\" disable justification (adjust text to left margin only) .\" disable justification (adjust text to left margin only)
Expand Down
2 changes: 1 addition & 1 deletion wscript
Expand Up @@ -6,7 +6,7 @@ import sys, os, shutil
from os.path import join, dirname, abspath from os.path import join, dirname, abspath
from logging import fatal from logging import fatal


VERSION="0.1.10" VERSION="0.1.11"
APPNAME="node.js" APPNAME="node.js"


import js2c import js2c
Expand Down

0 comments on commit 5ddc4f5

Please sign in to comment.