Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Sep 30, 2009
1 parent 7b33709 commit 9c9d67e
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 11 deletions.
29 changes: 28 additions & 1 deletion 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

Expand Down
8 changes: 4 additions & 4 deletions doc/api.html
Expand Up @@ -19,8 +19,8 @@
<h1>NODE(1)</h1>
<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="revnumber">version 0.1.12,</span>
<span id="revdate">2009.09.24</span>
<span id="revnumber">version 0.1.13,</span>
<span id="revdate">2009.09.30</span>
<div id="toc">
<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>
Expand Down Expand Up @@ -2028,8 +2028,8 @@ <h2 id="_extension_api">Extension API</h2>
</div>
<div id="footer">
<div id="footer-text">
Version 0.1.12<br />
Last updated 2009-09-29 19:22:27 CEST
Version 0.1.13<br />
Last updated 2009-09-30 23:15:59 CEST
</div>
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
Version, 0.1.12, 2009.09.24
Version, 0.1.13, 2009.09.30


== NAME
Expand Down
4 changes: 2 additions & 2 deletions doc/index.html
Expand Up @@ -149,8 +149,8 @@ <h2 id="download">Download</h2>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
2009.09.24
<a href="http://s3.amazonaws.com/four.livejournal/20090924/node-0.1.12.tar.gz">node-0.1.12.tar.gz</a>
2009.09.30
<a href="http://s3.amazonaws.com/four.livejournal/20090930/node-0.1.13.tar.gz">node-0.1.13.tar.gz</a>
</p>

<h2 id="build">Build</h2>
Expand Down
4 changes: 2 additions & 2 deletions doc/node.1
@@ -1,11 +1,11 @@
.\" Title: node
.\" Author:
.\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/>
.\" Date: 09/29/2009
.\" Date: 09/30/2009
.\" Manual:
.\" Source:
.\"
.TH "NODE" "1" "09/29/2009" "" ""
.TH "NODE" "1" "09/30/2009" "" ""
.\" disable hyphenation
.nh
.\" 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 logging import fatal

VERSION="0.1.12"
VERSION="0.1.13"
APPNAME="node.js"

import js2c
Expand Down

0 comments on commit 9c9d67e

Please sign in to comment.