bump version v0.1.13
authorRyan Dahl <ry@tinyclouds.org>
Wed, 30 Sep 2009 21:21:25 +0000 (23:21 +0200)
committerRyan Dahl <ry@tinyclouds.org>
Wed, 30 Sep 2009 21:21:25 +0000 (23:21 +0200)
ChangeLog
doc/api.html
doc/api.txt
doc/index.html
doc/node.1
wscript

index a429a5d..2aeb9ea 100644 (file)
--- 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
 
index da792d2..015889e 100644 (file)
@@ -19,8 +19,8 @@ window.onload = function(){generateToc(2)}
 <h1>NODE(1)</h1>\r
 <span id="author">Ryan Dahl</span><br />\r
 <span id="email"><tt>&lt;<a href="mailto:ry@tinyclouds.org">ry@tinyclouds.org</a>&gt;</tt></span><br />\r
-<span id="revnumber">version 0.1.12,</span>\r
-<span id="revdate">2009.09.24</span>\r
+<span id="revnumber">version 0.1.13,</span>\r
+<span id="revdate">2009.09.30</span>\r
 <div id="toc">\r
   <div id="toctitle">Table of Contents</div>\r
   <noscript><p><b>JavaScript must be enabled in your browser to display the table of contents.</b></p></noscript>\r
@@ -2028,8 +2028,8 @@ init (Handle&lt;Object&gt; target)
 </div>\r
 <div id="footer">\r
 <div id="footer-text">\r
-Version 0.1.12<br />\r
-Last updated 2009-09-29 19:22:27 CEST\r
+Version 0.1.13<br />\r
+Last updated 2009-09-30 23:15:59 CEST\r
 </div>\r
 </div>\r
 </body>\r
index c84519f..46c806c 100644 (file)
@@ -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
index 88094f3..435207e 100644 (file)
@@ -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>
index 6f123ef..7d2c7a4 100644 (file)
@@ -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 63a155b..0ff9db2 100644 (file)
--- 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