0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

bump version

This commit is contained in:
Ryan Dahl 2010-02-09 13:20:20 -08:00
parent 3aca908db3
commit 49de41ef46
4 changed files with 24 additions and 5 deletions

View File

@ -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) * Implemented __dirname (Felix Geisendörfer)

View File

@ -1,7 +1,7 @@
NODE(1) NODE(1)
======= =======
Ryan Dahl <ry@tinyclouds.org> Ryan Dahl <ry@tinyclouds.org>
Version, 0.1.27, 2010.02.03 Version, 0.1.28, 2010.02.09
== NAME == NAME

View File

@ -97,9 +97,9 @@ server.listen(7000, "localhost");</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a> <a href="http://github.com/ry/node/tree/master">git repo</a>
</p> </p>
<p> <p>
2010.02.03 2010.02.09
<a <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> </p>
<h2 id="build">Build</h2> <h2 id="build">Build</h2>

View File

@ -7,7 +7,7 @@ from os.path import join, dirname, abspath
from logging import fatal from logging import fatal
cwd = os.getcwd() cwd = os.getcwd()
VERSION="0.1.27" VERSION="0.1.28"
APPNAME="node.js" APPNAME="node.js"
import js2c import js2c