Skip to content

Commit 9c9d67e

Browse files
committed
bump version
1 parent 7b33709 commit 9c9d67e

File tree

6 files changed

+38
-11
lines changed

6 files changed

+38
-11
lines changed

ChangeLog

+28-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,31 @@
1-
2009.09.24, Version 0.1.12
1+
2009.09.30, Version 0.1.13
2+
3+
* Feature: Multipart stream parser (Felix Geisendörfer)
4+
5+
* API: Move node.puts(), node.exec() and others to /utils.js
6+
7+
* API: Move http, tcp libraries to /http.js and /tcp.js
8+
9+
* API: Rename node.exit() to process.exit()
10+
11+
* Bugfix: require() and include() should work in callbacks.
12+
13+
* Pass the Host header in http.cat calls
14+
15+
* Add warning when coroutine stack size grows too large.
16+
17+
* Enhance repl library (Ray Morgan)
18+
19+
* Bugfix: build script for
20+
GCC 4.4 (removed -Werror in V8),
21+
on Linux 2.4,
22+
and with Python 2.4.4.
23+
24+
* Add read() and write() to /file.js to read and write
25+
whole files at once.
26+
27+
28+
2009.09.24, Version 0.1.12, 2f56ccb45e87510de712f56705598b3b4e3548ec
229

330
* Feature: System modules, node.libraryPaths
431

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.12,</span>
23-
<span id="revdate">2009.09.24</span>
22+
<span id="revnumber">version 0.1.13,</span>
23+
<span id="revdate">2009.09.30</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>
@@ -2028,8 +2028,8 @@ <h2 id="_extension_api">Extension API</h2>
20282028
</div>
20292029
<div id="footer">
20302030
<div id="footer-text">
2031-
Version 0.1.12<br />
2032-
Last updated 2009-09-29 19:22:27 CEST
2031+
Version 0.1.13<br />
2032+
Last updated 2009-09-30 23:15:59 CEST
20332033
</div>
20342034
</div>
20352035
</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.12, 2009.09.24
4+
Version, 0.1.13, 2009.09.30
55

66

77
== NAME

doc/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ <h2 id="download">Download</h2>
149149
<a href="http://github.com/ry/node/tree/master">git repo</a>
150150
</p>
151151
<p>
152-
2009.09.24
153-
<a href="http://s3.amazonaws.com/four.livejournal/20090924/node-0.1.12.tar.gz">node-0.1.12.tar.gz</a>
152+
2009.09.30
153+
<a href="http://s3.amazonaws.com/four.livejournal/20090930/node-0.1.13.tar.gz">node-0.1.13.tar.gz</a>
154154
</p>
155155

156156
<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/29/2009
4+
.\" Date: 09/30/2009
55
.\" Manual:
66
.\" Source:
77
.\"
8-
.TH "NODE" "1" "09/29/2009" "" ""
8+
.TH "NODE" "1" "09/30/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.12"
9+
VERSION="0.1.13"
1010
APPNAME="node.js"
1111

1212
import js2c

0 commit comments

Comments
 (0)