Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2009-09-24 15:51:10 +0400
committerRyan Dahl <ry@tinyclouds.org>2009-09-24 15:51:10 +0400
commit2f56ccb45e87510de712f56705598b3b4e3548ec (patch)
tree442a62114ac6132ef2fe8baee6c8d6cba8682837
parentcfffa0bdd8545224ffb17c7011471f28b6df70e8 (diff)
bump versionv0.1.12
-rw-r--r--ChangeLog17
-rw-r--r--doc/api.html8
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html4
-rw-r--r--doc/node.14
-rw-r--r--wscript2
6 files changed, 26 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index 658b59f15f4..a429a5db673 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,19 @@
-2009.09.18, Version 0.1.11
+2009.09.24, Version 0.1.12
+
+ * Feature: System modules, node.libraryPaths
+
+ * API: Remove "raw" encoding, rename "raws" to "binary".
+
+ * API: Added connection.setNoDElay() to disable Nagle algo.
+
+ * Decrease default TCP server backlog to 128
+
+ * Bugfix: memory leak involving node.fs.* methods.
+
+ * Upgrade v8 to 1.3.13
+
+
+2009.09.18, Version 0.1.11, 5ddc4f5d0c002bac0ae3d62fc0dc58f0d2d83ec4
* API: default to utf8 encoding for node.fs.cat()
diff --git a/doc/api.html b/doc/api.html
index f5d7152e625..de644d6b9b8 100644
--- a/doc/api.html
+++ b/doc/api.html
@@ -19,8 +19,8 @@ window.onload = function(){generateToc(2)}
<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.11,</span>
-<span id="revdate">2009.09.18</span>
+<span id="revnumber">version 0.1.12,</span>
+<span id="revdate">2009.09.24</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>
@@ -1943,8 +1943,8 @@ init (Handle&lt;Object&gt; target)
</div>
<div id="footer">
<div id="footer-text">
-Version 0.1.11<br />
-Last updated 2009-09-23 17:54:21 CEST
+Version 0.1.12<br />
+Last updated 2009-09-24 13:47:32 CEST
</div>
</div>
</body>
diff --git a/doc/api.txt b/doc/api.txt
index a7ea452eac4..89ab6fbe6cc 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.11, 2009.09.18
+Version, 0.1.12, 2009.09.24
== NAME
diff --git a/doc/index.html b/doc/index.html
index 0cd2feaebb7..59bf583de30 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -146,8 +146,8 @@ Server running at http://127.0.0.1:8000/</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2009.09.18
- <a href="http://s3.amazonaws.com/four.livejournal/20090918/node-0.1.11.tar.gz">node-0.1.11.tar.gz</a>
+ 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>
</p>
<h2 id="build">Build</h2>
diff --git a/doc/node.1 b/doc/node.1
index 915994d4919..734719af618 100644
--- a/doc/node.1
+++ b/doc/node.1
@@ -1,11 +1,11 @@
.\" Title: node
.\" Author:
.\" Generator: DocBook XSL Stylesheets v1.73.2 <http://docbook.sf.net/>
-.\" Date: 09/23/2009
+.\" Date: 09/24/2009
.\" Manual:
.\" Source:
.\"
-.TH "NODE" "1" "09/23/2009" "" ""
+.TH "NODE" "1" "09/24/2009" "" ""
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
diff --git a/wscript b/wscript
index 805bf8ca0eb..9f0cbba7ca8 100644
--- a/wscript
+++ b/wscript
@@ -6,7 +6,7 @@ import sys, os, shutil
from os.path import join, dirname, abspath
from logging import fatal
-VERSION="0.1.11"
+VERSION="0.1.12"
APPNAME="node.js"
import js2c