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 <ry@tinyclouds.org>2009-06-30 17:18:05 +0400
committerRyan <ry@tinyclouds.org>2009-06-30 17:18:05 +0400
commit813b53938b40484f63e7324c030e33711f26a149 (patch)
tree192f5b16a55d6a8e01deb67d8bfe155e8aac545f
parent94f03be7283401f5893a3801ac28d2191ace8ad5 (diff)
bump versionv0.1.0
-rw-r--r--ChangeLog19
-rw-r--r--website/api.txt2
-rw-r--r--website/index.html4
-rw-r--r--wscript2
4 files changed, 25 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f2436495dcb..dfb550bc35c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,22 @@
+2009.06.30, Version 0.1.0
+
+ * Update documentation, use asciidoc.
+
+ * EventEmitter and Promise interfaces. (Breaks previous API.)
+
+ * Remove node.Process constructor in favor of node.createProcess
+
+ * Add -m32 flags for compiling on x64 platforms.
+ (Thanks to András Bártházi)
+
+ * Upgrade v8 to 1.2.10 and libev to 3.6
+
+ * Bugfix: Timer::RepeatSetter wasn't working.
+
+ * Bugfix: Spawning many processes in a loop
+ (reported by Felix Geisendoerfer)
+
+
2009.06.24, Version 0.0.6
* Load modules via HTTP URLs (Urban Hafner)
diff --git a/website/api.txt b/website/api.txt
index 2849ef2d3b6..91a5277b267 100644
--- a/website/api.txt
+++ b/website/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.0, 2009.06.28
+Version, 0.1.0, 2009.06.30
== NAME
diff --git a/website/index.html b/website/index.html
index 765809e23fc..965da7a4d3a 100644
--- a/website/index.html
+++ b/website/index.html
@@ -156,6 +156,10 @@ Server running at http://127.0.0.1:8000/</pre>
</p>
<ul>
<li>
+ 2009.06.30
+ <a href="http://s3.amazonaws.com/four.livejournal/20090630/node-0.1.0.tar.gz">node-0.1.0.tar.gz</a>
+ </li>
+ <li>
2009.06.24
<a href="http://s3.amazonaws.com/four.livejournal/20090624/node-0.0.6.tar.gz">node-0.0.6.tar.gz</a>
</li>
diff --git a/wscript b/wscript
index c1c78e78262..277154d2508 100644
--- a/wscript
+++ b/wscript
@@ -7,7 +7,7 @@ from logging import fatal
import js2c
-VERSION='0.0.6'
+VERSION='0.1.0'
APPNAME='node'
srcdir = '.'