Skip to content

Commit 2f56ccb

Browse files
committed
bump version
1 parent cfffa0b commit 2f56ccb

File tree

6 files changed

+26
-11
lines changed

6 files changed

+26
-11
lines changed

ChangeLog

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
2009.09.18, Version 0.1.11
1+
2009.09.24, Version 0.1.12
2+
3+
* Feature: System modules, node.libraryPaths
4+
5+
* API: Remove "raw" encoding, rename "raws" to "binary".
6+
7+
* API: Added connection.setNoDElay() to disable Nagle algo.
8+
9+
* Decrease default TCP server backlog to 128
10+
11+
* Bugfix: memory leak involving node.fs.* methods.
12+
13+
* Upgrade v8 to 1.3.13
14+
15+
16+
2009.09.18, Version 0.1.11, 5ddc4f5d0c002bac0ae3d62fc0dc58f0d2d83ec4
217

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

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.11,</span>
23-
<span id="revdate">2009.09.18</span>
22+
<span id="revnumber">version 0.1.12,</span>
23+
<span id="revdate">2009.09.24</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>
@@ -1943,8 +1943,8 @@ <h2 id="_extension_api">Extension API</h2>
19431943
</div>
19441944
<div id="footer">
19451945
<div id="footer-text">
1946-
Version 0.1.11<br />
1947-
Last updated 2009-09-23 17:54:21 CEST
1946+
Version 0.1.12<br />
1947+
Last updated 2009-09-24 13:47:32 CEST
19481948
</div>
19491949
</div>
19501950
</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.11, 2009.09.18
4+
Version, 0.1.12, 2009.09.24
55

66

77
== NAME

doc/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ <h2 id="download">Download</h2>
146146
<a href="http://github.com/ry/node/tree/master">git repo</a>
147147
</p>
148148
<p>
149-
2009.09.18
150-
<a href="http://s3.amazonaws.com/four.livejournal/20090918/node-0.1.11.tar.gz">node-0.1.11.tar.gz</a>
149+
2009.09.24
150+
<a href="http://s3.amazonaws.com/four.livejournal/20090924/node-0.1.12.tar.gz">node-0.1.12.tar.gz</a>
151151
</p>
152152

153153
<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/23/2009
4+
.\" Date: 09/24/2009
55
.\" Manual:
66
.\" Source:
77
.\"
8-
.TH "NODE" "1" "09/23/2009" "" ""
8+
.TH "NODE" "1" "09/24/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.11"
9+
VERSION="0.1.12"
1010
APPNAME="node.js"
1111

1212
import js2c

0 commit comments

Comments
 (0)