From 07e64d45ffa1856e824c4fa6afd0442ba61d6fd8 Mon Sep 17 00:00:00 2001
From: Ryan Dahl
Date: Fri, 9 Apr 2010 16:58:29 -0700
Subject: [PATCH] bump version
---
ChangeLog | 23 ++++++++++++++++++++++-
doc/index.html | 4 ++--
wscript | 2 +-
3 files changed, 25 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index c5dce40bb4dc84..9eef860976daaa 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 e49f55ae2a9fa7..e9c96c9493549c 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -95,8 +95,8 @@ Download
git repo
- 2010.03.19
- node-v0.1.33.tar.gz
+ 2010.04.09
+ node-v0.1.90.tar.gz
Build
diff --git a/wscript b/wscript
index fb8f77907d1384..cfe78a804163b7 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