From 5ddc4f5d0c002bac0ae3d62fc0dc58f0d2d83ec4 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 18 Sep 2009 18:32:25 +0200 Subject: [PATCH] bump version --- ChangeLog | 23 ++++++++++++++++++++++- doc/api.html | 8 ++++---- doc/api.txt | 2 +- doc/index.html | 4 ++-- doc/node.1 | 4 ++-- wscript | 2 +- 6 files changed, 32 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index a822b137fa2ff7..658b59f15f4501 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,25 @@ -2009.09.11, Version 0.1.10 +2009.09.18, Version 0.1.11 + + * API: default to utf8 encoding for node.fs.cat() + + * API: add node.exec() + + * API: node.fs.read() takes a normal encoding parameter. + + * API: Change arguments of emit(), emitSuccess(), emitError() + + * Bugfix: node.fs.write() was stack allocating buffer. + + * Bugfix: ReportException shouldn't forget the top frame. + + * Improve buffering for HTTP outgoing messages + + * Fix and reenable x64 macintosh build. + + * Upgrade v8 to 1.3.11 + + +2009.09.11, Version 0.1.10, 12bb0d46ce761e3d00a27170e63b40408c15b558 * Feature: raw string encoding "raws" diff --git a/doc/api.html b/doc/api.html index 2c21ac6ad81967..9e3eb40e90fa45 100644 --- a/doc/api.html +++ b/doc/api.html @@ -19,8 +19,8 @@

NODE(1)

Ryan Dahl
<ry@tinyclouds.org>
-version 0.1.10, -2009.09.11 +version 0.1.11, +2009.09.18
Table of Contents
@@ -1929,8 +1929,8 @@

Extension API

diff --git a/doc/api.txt b/doc/api.txt index 9e17f6557e4619..63ce96f81ef8fa 100644 --- a/doc/api.txt +++ b/doc/api.txt @@ -1,7 +1,7 @@ NODE(1) ======= Ryan Dahl -Version, 0.1.10, 2009.09.11 +Version, 0.1.11, 2009.09.18 == NAME diff --git a/doc/index.html b/doc/index.html index 18291c038d4418..25e7e666247566 100644 --- a/doc/index.html +++ b/doc/index.html @@ -156,8 +156,8 @@

Download

git repo

- 2009.09.11 - node-0.1.10.tar.gz + 2009.09.18 + node-0.1.11.tar.gz

Build

diff --git a/doc/node.1 b/doc/node.1 index a701d1d0d9c1ee..c98d01bfcba18c 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/17/2009 +.\" Date: 09/18/2009 .\" Manual: .\" Source: .\" -.TH "NODE" "1" "09/17/2009" "" "" +.TH "NODE" "1" "09/18/2009" "" "" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) diff --git a/wscript b/wscript index 575e1a4a8cb2bc..d13fc899332f50 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.10" +VERSION="0.1.11" APPNAME="node.js" import js2c