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-08-21 20:03:15 +0400
committerRyan <ry@tinyclouds.org>2009-08-21 20:03:15 +0400
commita73998d6f491227e595524dc70589369fb458224 (patch)
treed088fd02eac580169af8190a0959e3b565a02a5f
parent8489bdbaeb07b18a736a438719adc8837c1908a0 (diff)
bump versionv0.1.5
-rw-r--r--ChangeLog18
-rw-r--r--src/node.h2
-rw-r--r--website/api.txt2
-rw-r--r--website/index.html4
4 files changed, 23 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 5c2201f47c9..04b86a7850c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,20 @@
-2009.08.13, Version 0.1.4
+2009.08.21, Version 0.1.5
+
+ * Bugfix: Buggy connections could crash node.js. Now check connection
+ before sending data every time (Kevin van Zonneveld)
+
+ * Bugfix: stdin fd (0) being ignored by node.File. (Abe Fettig)
+
+ * API: Remove connnection.fullClose()
+
+ * API: Return the EventEmitter from addListener for chaining.
+
+ * API: tcp.Connection "disconnect" event renamed to "close"
+
+ * Upgrade evcom
+ Upgrade v8 to 1.3.6
+
+2009.08.13, Version 0.1.4, 0f888ed6de153f68c17005211d7e0f960a5e34f3
* Major refactor to evcom.
diff --git a/src/node.h b/src/node.h
index 44b7c2075c4..1ba2282ea87 100644
--- a/src/node.h
+++ b/src/node.h
@@ -10,7 +10,7 @@
namespace node {
-#define NODE_VERSION "0.1.4"
+#define NODE_VERSION "0.1.5"
#define NODE_DEFINE_CONSTANT(target, constant) \
(target)->Set(v8::String::NewSymbol(#constant), \
diff --git a/website/api.txt b/website/api.txt
index 0087d24ed6d..897984605c2 100644
--- a/website/api.txt
+++ b/website/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
-Version, 0.1.4, 2009.08.13
+Version, 0.1.5, 2009.08.21
== NAME
diff --git a/website/index.html b/website/index.html
index 7f1655a6adb..4683961f821 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.08.21
+ <a href="http://s3.amazonaws.com/four.livejournal/20090821/node-0.1.5.tar.gz">node-0.1.5.tar.gz</a>
+ </li>
+ <li>
2009.08.13
<a href="http://s3.amazonaws.com/four.livejournal/20090813/node-0.1.4.tar.gz">node-0.1.4.tar.gz</a>
</li>