bump version v0.1.31
authorRyan Dahl <ry@tinyclouds.org>
Sat, 6 Mar 2010 01:55:00 +0000 (17:55 -0800)
committerRyan Dahl <ry@tinyclouds.org>
Sat, 6 Mar 2010 01:55:13 +0000 (17:55 -0800)
AUTHORS
ChangeLog
doc/api.txt
doc/index.html
wscript

diff --git a/AUTHORS b/AUTHORS
index bdf4b8a..81524a5 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -52,3 +52,9 @@ Yuichiro MASUI <masui@masuidrive.jp>
 Mark Hansen <mark@markhansen.co.nz>
 Zoran Tomicic <ztomicic@gmail.com>
 Jeremy Ashkenas <jashkenas@gmail.com>
+Scott González <scott.gonzalez@gmail.com>
+James Duncan <james@joyent.com>
+Arlo Breault <arlolra@gmail.com>
+Kris Kowal <kris.kowal@cixar.com>
+Jacek Becela <jacek.becela@gmail.com>
+Rob Ellis <kazoomer@gmail.com>
index 5389c3c..69b78a4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,32 @@
-2010.02.22, Version 0.1.30
+2010.03.05, Version 0.1.31
+
+  * API: - Move process.watchFile into fs module
+         - Move process.inherits to sys
+
+  * Improve Solaris port
+
+  * tcp.Connection.prototype.write now returns boolean to indicate if
+    argument was flushed to the kernel buffer.
+
+  * Added fs.link, fs.symlink, fs.readlink, fs.realpath
+    (Rasmus Andersson)
+
+  * Add setgid,getgid (James Duncan)
+
+  * Improve sys.inspect (Benjamin Thomas)
+
+  * Allow passing env to child process (Isaac Schlueter)
+
+  * fs.createWriteStream, fs.createReadStream (Felix Geisendörfer)
+
+  * Add INI parser (Rob Ellis)
+
+  * Bugfix: fs.readFile handling encoding (Jacek Becela)
+
+  * Upgrade V8 to 2.1.2
+
+
+2010.02.22, Version 0.1.30, bb0d1e65e1671aaeb21fac186b066701da0bc33b
 
   * Major API Changes
 
index 75b02d6..1815dfd 100644 (file)
@@ -1,7 +1,7 @@
 NODE(1)
 =======
 Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.30, 2010.02.22
+Version, 0.1.31, 2010.03.05
 
 
 == NAME
index e18522b..7e6033c 100644 (file)
@@ -96,8 +96,8 @@ server.listen(7000, "localhost");</pre>
         <a href="http://github.com/ry/node/tree/master">git repo</a>
       </p>
       <p>
-        2010.02.22
-        <a href="http://nodejs.org/dist/node-v0.1.30.tar.gz">node-v0.1.30.tar.gz</a>
+        2010.03.05
+        <a href="http://nodejs.org/dist/node-v0.1.31.tar.gz">node-v0.1.31.tar.gz</a>
       </p>
 
       <h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index 7fc6365..a8793d7 100644 (file)
--- a/wscript
+++ b/wscript
@@ -7,7 +7,7 @@ from os.path import join, dirname, abspath
 from logging import fatal
 
 cwd = os.getcwd()
-VERSION="0.1.30"
+VERSION="0.1.31"
 APPNAME="node.js"
 
 import js2c