Browse Source

bump version

v0.7.4-release v0.1.13
Ryan Dahl 15 years ago
parent
commit
9c9d67eb6c
  1. 29
      ChangeLog
  2. 8
      doc/api.html
  3. 2
      doc/api.txt
  4. 4
      doc/index.html
  5. 4
      doc/node.1
  6. 2
      wscript

29
ChangeLog

@ -1,4 +1,31 @@
2009.09.24, Version 0.1.12 2009.09.30, Version 0.1.13
* Feature: Multipart stream parser (Felix Geisendörfer)
* API: Move node.puts(), node.exec() and others to /utils.js
* API: Move http, tcp libraries to /http.js and /tcp.js
* API: Rename node.exit() to process.exit()
* Bugfix: require() and include() should work in callbacks.
* Pass the Host header in http.cat calls
* Add warning when coroutine stack size grows too large.
* Enhance repl library (Ray Morgan)
* Bugfix: build script for
GCC 4.4 (removed -Werror in V8),
on Linux 2.4,
and with Python 2.4.4.
* Add read() and write() to /file.js to read and write
whole files at once.
2009.09.24, Version 0.1.12, 2f56ccb45e87510de712f56705598b3b4e3548ec
* Feature: System modules, node.libraryPaths * Feature: System modules, node.libraryPaths

8
doc/api.html

@ -19,8 +19,8 @@ window.onload = function(){generateToc(2)}
<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.12,</span> <span id="revnumber">version 0.1.13,</span>
<span id="revdate">2009.09.24</span> <span id="revdate">2009.09.30</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>
@ -2028,8 +2028,8 @@ init (Handle&lt;Object&gt; target)
</div> </div>
<div id="footer"> <div id="footer">
<div id="footer-text"> <div id="footer-text">
Version 0.1.12<br /> Version 0.1.13<br />
Last updated 2009-09-29 19:22:27 CEST Last updated 2009-09-30 23:15:59 CEST
</div> </div>
</div> </div>
</body> </body>

2
doc/api.txt

@ -1,7 +1,7 @@
NODE(1) NODE(1)
======= =======
Ryan Dahl <ry@tinyclouds.org> Ryan Dahl <ry@tinyclouds.org>
Version, 0.1.12, 2009.09.24 Version, 0.1.13, 2009.09.30
== NAME == NAME

4
doc/index.html

@ -149,8 +149,8 @@ Server running at http://127.0.0.1:8000/</pre>
<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.24 2009.09.30
<a href="http://s3.amazonaws.com/four.livejournal/20090924/node-0.1.12.tar.gz">node-0.1.12.tar.gz</a> <a href="http://s3.amazonaws.com/four.livejournal/20090930/node-0.1.13.tar.gz">node-0.1.13.tar.gz</a>
</p> </p>
<h2 id="build">Build</h2> <h2 id="build">Build</h2>

4
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/29/2009 .\" Date: 09/30/2009
.\" Manual: .\" Manual:
.\" Source: .\" Source:
.\" .\"
.TH "NODE" "1" "09/29/2009" "" "" .TH "NODE" "1" "09/30/2009" "" ""
.\" disable hyphenation .\" disable hyphenation
.nh .nh
.\" disable justification (adjust text to left margin only) .\" disable justification (adjust text to left margin only)

2
wscript

@ -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.12" VERSION="0.1.13"
APPNAME="node.js" APPNAME="node.js"
import js2c import js2c

Loading…
Cancel
Save