summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2009-09-30 23:21:25 +0200
committerRyan Dahl <ry@tinyclouds.org>2009-09-30 23:21:25 +0200
commit9c9d67eb6ce1162c8da05ff59624f6c3ade19bf7 (patch)
tree983040fcdfef4c321941d91fc2d7a6a80179a12c
parent7b337096c9d373617d8989c7afd67a4f4573ca9b (diff)
downloadandroid-node-v8-9c9d67eb6ce1162c8da05ff59624f6c3ade19bf7.tar.gz
android-node-v8-9c9d67eb6ce1162c8da05ff59624f6c3ade19bf7.tar.bz2
android-node-v8-9c9d67eb6ce1162c8da05ff59624f6c3ade19bf7.zip
bump version
-rw-r--r--ChangeLog29
-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, 38 insertions, 11 deletions
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)}
<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.12,</span>
-<span id="revdate">2009.09.24</span>
+<span id="revnumber">version 0.1.13,</span>
+<span id="revdate">2009.09.30</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>
@@ -2028,8 +2028,8 @@ init (Handle&lt;Object&gt; target)
</div>
<div id="footer">
<div id="footer-text">
-Version 0.1.12<br />
-Last updated 2009-09-29 19:22:27 CEST
+Version 0.1.13<br />
+Last updated 2009-09-30 23:15:59 CEST
</div>
</div>
</body>
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 <ry@tinyclouds.org>
-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/</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 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>
+ 2009.09.30
+ <a href="http://s3.amazonaws.com/four.livejournal/20090930/node-0.1.13.tar.gz">node-0.1.13.tar.gz</a>
</p>
<h2 id="build">Build</h2>
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 <http://docbook.sf.net/>
-.\" 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