diff --git a/ChangeLog b/ChangeLog index a429a5db67..2aeb9ea2b7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,31 @@ -2009.09.24, Version 0.1.12 +2009.09.30, Version 0.1.13 + + * Feature: Multipart stream parser (Felix Geisendörfer) + + * API: Move node.puts(), node.exec() and others to /utils.js + + * API: Move http, tcp libraries to /http.js and /tcp.js + + * API: Rename node.exit() to process.exit() + + * Bugfix: require() and include() should work in callbacks. + + * Pass the Host header in http.cat calls + + * Add warning when coroutine stack size grows too large. + + * Enhance repl library (Ray Morgan) + + * Bugfix: build script for + GCC 4.4 (removed -Werror in V8), + on Linux 2.4, + and with Python 2.4.4. + + * Add read() and write() to /file.js to read and write + whole files at once. + + +2009.09.24, Version 0.1.12, 2f56ccb45e87510de712f56705598b3b4e3548ec * Feature: System modules, node.libraryPaths diff --git a/doc/api.html b/doc/api.html index da792d2597..015889ea8f 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.12, -2009.09.24 +version 0.1.13, +2009.09.30
Table of Contents
@@ -2028,8 +2028,8 @@ init (Handle<Object> target)
diff --git a/doc/api.txt b/doc/api.txt index c84519f5c0..46c806c79d 100644 --- a/doc/api.txt +++ b/doc/api.txt @@ -1,7 +1,7 @@ NODE(1) ======= Ryan Dahl -Version, 0.1.12, 2009.09.24 +Version, 0.1.13, 2009.09.30 == NAME diff --git a/doc/index.html b/doc/index.html index 88094f3b05..435207ed62 100644 --- a/doc/index.html +++ b/doc/index.html @@ -149,8 +149,8 @@ Server running at http://127.0.0.1:8000/ git repo

- 2009.09.24 - node-0.1.12.tar.gz + 2009.09.30 + node-0.1.13.tar.gz

Build

diff --git a/doc/node.1 b/doc/node.1 index 6f123effcd..7d2c7a4fd9 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/29/2009 +.\" Date: 09/30/2009 .\" Manual: .\" Source: .\" -.TH "NODE" "1" "09/29/2009" "" "" +.TH "NODE" "1" "09/30/2009" "" "" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) diff --git a/wscript b/wscript index 63a155bfe9..0ff9db2c44 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.12" +VERSION="0.1.13" APPNAME="node.js" import js2c