bump version v0.1.32
authorRyan Dahl <ry@tinyclouds.org>
Sat, 13 Mar 2010 02:50:46 +0000 (18:50 -0800)
committerRyan Dahl <ry@tinyclouds.org>
Sat, 13 Mar 2010 02:50:46 +0000 (18:50 -0800)
AUTHORS
ChangeLog
doc/api.txt
doc/index.html
wscript

diff --git a/AUTHORS b/AUTHORS
index 81524a5..d1c94dd 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -58,3 +58,4 @@ Arlo Breault <arlolra@gmail.com>
 Kris Kowal <kris.kowal@cixar.com>
 Jacek Becela <jacek.becela@gmail.com>
 Rob Ellis <kazoomer@gmail.com>
+Tim-Smart <timehAndGod@gmail.com>
index 69b78a4..3532eda 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,26 @@
-2010.03.05, Version 0.1.31
+2010.03.12, Version 0.1.32
+
+  * Optimize event emitter for single listener
+
+  * Add process.evalcx, require.registerExtension (Tim Smart)
+
+  * Replace --cflags with --vars
+
+  * Fix bugs in fs.create*Stream (Felix Geisendörfer)
+
+  * Deprecate process.mixin, process.unloop
+
+  * Remove the 'Error: (no message)' exceptions, print stack
+    trace instead
+
+  * INI parser bug fixes (Isaac Schlueter)
+
+  * FreeBSD fixes (Vanilla Hsu)
+
+  * Upgrade to V8 2.1.3, WAF 1.5.14a, libev
+
+
+2010.03.05, Version 0.1.31, 39b63dfe1737d46a8c8818c92773ef181fd174b3
 
   * API: - Move process.watchFile into fs module
          - Move process.inherits to sys
index 5163968..2bdd10b 100644 (file)
@@ -1,7 +1,7 @@
 NODE(1)
 =======
 Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.31, 2010.03.05
+Version, 0.1.32, 2010.03.12
 
 
 == NAME
index 7e6033c..f7fefc1 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.03.05
-        <a href="http://nodejs.org/dist/node-v0.1.31.tar.gz">node-v0.1.31.tar.gz</a>
+        2010.03.12
+        <a href="http://nodejs.org/dist/node-v0.1.32.tar.gz">node-v0.1.32.tar.gz</a>
       </p>
 
       <h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index f8ccfcd..da76395 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.31"
+VERSION="0.1.32"
 APPNAME="node.js"
 
 import js2c