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-04-10 03:58:29 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-04-10 04:05:03 +0400
commit07e64d45ffa1856e824c4fa6afd0442ba61d6fd8 (patch)
tree1af37b34a87dabd28ac708bb096ea87604491e5f
parent54f02345b5bd456900643456857c98fec0dc8e02 (diff)
bump versionv0.1.90
-rw-r--r--ChangeLog23
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
3 files changed, 25 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index c5dce40bb4d..9eef860976d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,25 @@
-2010.03.19, Version 0.1.33
+2010.04.09, Version 0.1.90
+
+ * Merge writing of networking system (net2)
+ - New Buffer object for binary data.
+ - Support UNIX sockets, Pipes
+ - Uniform stream API
+ - Currently no SSL
+ - Legacy modules can be accessed at 'http_old' and 'tcp_old'
+
+ * Replace udns with c-ares. (Krishna Rajendran)
+
+ * New documentation system using Markdown and Ronn
+ (Tim Caswell, Micheil Smith)
+
+ * Better idle-time GC
+
+ * Countless small bug fixes.
+
+ * Upgrade V8 to 2.2.X, WAF 1.5.15
+
+
+2010.03.19, Version 0.1.33, 618296ef571e873976f608d91a3d6b9e65fe8284
* Include lib/ directory in node executable. Compile on demand.
diff --git a/doc/index.html b/doc/index.html
index e49f55ae2a9..e9c96c94935 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -95,8 +95,8 @@ server.listen(7000, "localhost");</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2010.03.19
- <a href="http://nodejs.org/dist/node-v0.1.33.tar.gz">node-v0.1.33.tar.gz</a>
+ 2010.04.09
+ <a href="http://nodejs.org/dist/node-v0.1.90.tar.gz">node-v0.1.90.tar.gz</a>
</p>
<h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index fb8f77907d1..cfe78a80416 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.33"
+VERSION="0.1.90"
APPNAME="node.js"
import js2c