Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-03-13 05:50:46 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-03-13 05:50:46 +0300
commit61c801413544a50000faa7f58376e9b33ba6254f (patch)
tree8f665ce07e6b29590c1eb1d305e9db23adbe8d4a
parentd7efb0fdb2b269f3fa16a26c0690f3f41c1dfe65 (diff)
bump versionv0.1.32
-rw-r--r--AUTHORS1
-rw-r--r--ChangeLog24
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
5 files changed, 28 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index 81524a54660..d1c94ddb0cf 100644
--- 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>
diff --git a/ChangeLog b/ChangeLog
index 69b78a43828..3532eda34e9 100644
--- 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
diff --git a/doc/api.txt b/doc/api.txt
index 516396888b4..2bdd10bcb67 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -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
diff --git a/doc/index.html b/doc/index.html
index 7e6033cbbcd..f7fefc14a47 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -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 f8ccfcd7c39..da7639505b5 100644
--- 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