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-02-10 00:20:20 +0300
committerRyan Dahl <ry@tinyclouds.org>2010-02-10 00:20:20 +0300
commit49de41ef463292988ddacfb01a20543b963d9669 (patch)
tree4fd1c04ce74be970d255e5e9548c2db6cc44f378
parent3aca908db3be3b7354d409974fb9f84c7d980644 (diff)
bump versionv0.1.28
-rw-r--r--ChangeLog21
-rw-r--r--doc/api.txt2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
4 files changed, 24 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 46318dd4dc0..00f11cca2ad 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 2eeea99d998..87af8b0f6e6 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
-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 de7efdd7e5a..79bc44ed23d 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -97,9 +97,9 @@ server.listen(7000, "localhost");</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
- 2010.02.03
+ 2010.02.09
<a
- href="http://s3.amazonaws.com/four.livejournal/20100203/node-v0.1.27.tar.gz">node-v0.1.27.tar.gz</a>
+ href="http://s3.amazonaws.com/four.livejournal/20100209/node-v0.1.28.tar.gz">node-v0.1.28.tar.gz</a>
</p>
<h2 id="build">Build</h2>
diff --git a/wscript b/wscript
index 92a6c199b98..b7cf73781d6 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