From 2f56ccb45e87510de712f56705598b3b4e3548ec Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 24 Sep 2009 13:51:10 +0200 Subject: [PATCH] bump version --- ChangeLog | 17 ++++++++++++++++- doc/api.html | 8 ++++---- doc/api.txt | 2 +- doc/index.html | 4 ++-- doc/node.1 | 4 ++-- wscript | 2 +- 6 files changed, 26 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index 658b59f..a429a5d 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 f5d7152..de644d6 100644 --- a/doc/api.html +++ b/doc/api.html @@ -19,8 +19,8 @@ window.onload = function(){generateToc(2)}

NODE(1)

Ryan Dahl
<ry@tinyclouds.org>
-version 0.1.11, -2009.09.18 +version 0.1.12, +2009.09.24
Table of Contents
@@ -1943,8 +1943,8 @@ init (Handle<Object> target)
diff --git a/doc/api.txt b/doc/api.txt index a7ea452..89ab6fb 100644 --- a/doc/api.txt +++ b/doc/api.txt @@ -1,7 +1,7 @@ NODE(1) ======= Ryan Dahl -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 0cd2fea..59bf583 100644 --- a/doc/index.html +++ b/doc/index.html @@ -146,8 +146,8 @@ Server running at http://127.0.0.1:8000/ git repo

- 2009.09.18 - node-0.1.11.tar.gz + 2009.09.24 + node-0.1.12.tar.gz

Build

diff --git a/doc/node.1 b/doc/node.1 index 915994d..734719a 100644 --- a/doc/node.1 +++ b/doc/node.1 @@ -1,11 +1,11 @@ .\" Title: node .\" Author: .\" Generator: DocBook XSL Stylesheets v1.73.2 -.\" 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 805bf8c..9f0cbba 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 -- 2.7.4