Browse Source

bump version

v0.7.4-release v0.1.28
Ryan Dahl 15 years ago
parent
commit
49de41ef46
  1. 21
      ChangeLog
  2. 2
      doc/api.txt
  3. 4
      doc/index.html
  4. 2
      wscript

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

2
doc/api.txt

@ -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

4
doc/index.html

@ -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>

2
wscript

@ -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

Loading…
Cancel
Save