From 49de41ef463292988ddacfb01a20543b963d9669 Mon Sep 17 00:00:00 2001
From: Ryan Dahl
Date: Tue, 9 Feb 2010 13:20:20 -0800
Subject: [PATCH] bump version
---
ChangeLog | 21 ++++++++++++++++++++-
doc/api.txt | 2 +-
doc/index.html | 4 ++--
wscript | 2 +-
4 files changed, 24 insertions(+), 5 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 46318dd4dc..00f11cca2a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,23 @@
-2010.02.03, Version 0.1.27
+2010.02.09, Version 0.1.28
+
+ * Use Google's jsmin.py which can be used for evil.
+
+ * Add posix.truncate()
+
+ * Throw errors from server.listen()
+
+ * stdio bugfix (test by Mikeal Rogers)
+
+ * Module system refactor (Felix Geisendörfer, Blaine Cook)
+
+ * Add process.setuid(), getuid() (Michael Carter)
+
+ * sys.inspect refactor (Tim Caswell)
+
+ * Multipart library rewrite (isaacs)
+
+
+2010.02.03, Version 0.1.27, 0cfa789cc530848725a8cb5595224e78ae7b9dd0
* Implemented __dirname (Felix Geisendörfer)
diff --git a/doc/api.txt b/doc/api.txt
index 2eeea99d99..87af8b0f6e 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl
-Version, 0.1.27, 2010.02.03
+Version, 0.1.28, 2010.02.09
== NAME
diff --git a/doc/index.html b/doc/index.html
index de7efdd7e5..79bc44ed23 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -97,9 +97,9 @@ server.listen(7000, "localhost");
git repo
- 2010.02.03
+ 2010.02.09
node-v0.1.27.tar.gz
+ href="http://s3.amazonaws.com/four.livejournal/20100209/node-v0.1.28.tar.gz">node-v0.1.28.tar.gz
Build
diff --git a/wscript b/wscript
index 92a6c199b9..b7cf73781d 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.27"
+VERSION="0.1.28"
APPNAME="node.js"
import js2c