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-20 07:07:03 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-03-20 07:07:03 +0300
commit618296ef571e873976f608d91a3d6b9e65fe8284 (patch)
tree24f7113cae1ff044cbbed9b24ab2a719e9438c46
parentb29f78772ec183b4e4aee0f67f95c599a7d8060b (diff)
bump versionv0.1.33
-rw-r--r--AUTHORS4
-rw-r--r--ChangeLog13
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
5 files changed, 20 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index d1c94ddb0cf..f6199ecfbd2 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -59,3 +59,7 @@ Kris Kowal <kris.kowal@cixar.com>
Jacek Becela <jacek.becela@gmail.com>
Rob Ellis <kazoomer@gmail.com>
Tim-Smart <timehAndGod@gmail.com>
+Herbert Vojčík <herby@mailbox.sk>
+Krishna Rajendran <krishna@emptybox.org>
+pyrotechnick <pyrotechnick@feistystudios.com>
+Carson McDonald <carson@ioncannon.net>
diff --git a/ChangeLog b/ChangeLog
index 3532eda34e9..c5dce40bb4d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,15 @@
-2010.03.12, Version 0.1.32
+2010.03.19, Version 0.1.33
+
+ * Include lib/ directory in node executable. Compile on demand.
+
+ * evalcx clean ups (Isaac Z. Schlueter, Tim-Smart)
+
+ * Various fixes, clean ups
+
+ * V8 upgraded to 2.1.5
+
+
+2010.03.12, Version 0.1.32, 61c801413544a50000faa7f58376e9b33ba6254f
* Optimize event emitter for single listener
diff --git a/doc/api.txt b/doc/api.txt
index 38b4c854697..0885b679971 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.32, 2010.03.12
+Version, 0.1.33, 2010.03.19
== NAME
diff --git a/doc/index.html b/doc/index.html
index 431dabbe2ff..e93e036cedb 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.12
- <a href="http://nodejs.org/dist/node-v0.1.32.tar.gz">node-v0.1.32.tar.gz</a>
+ 2010.03.19
+ <a href="http://nodejs.org/dist/node-v0.1.33.tar.gz">node-v0.1.33.tar.gz</a>
</p>
<h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index ab998d367fa..1dc666e9b90 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.32"
+VERSION="0.1.33"
APPNAME="node.js"
import js2c