Browse Source

bump version

v0.7.4-release v0.1.30
Ryan Dahl 15 years ago
parent
commit
bb0d1e65e1
  1. 43
      ChangeLog
  2. 2
      doc/api.txt
  3. 4
      doc/index.html
  4. 2
      wscript

43
ChangeLog

@ -1,4 +1,45 @@
2010.02.17, Version 0.1.29 2010.02.22, Version 0.1.30
* Major API Changes
- Promises removed. See
http://groups.google.com/group/nodejs/msg/426f3071f3eec16b
http://groups.google.com/group/nodejs/msg/df199d233ff17efa
The API for fs was
fs.readdir("/usr").addCallback(function (files) {
puts("/usr files: " + files);
});
It is now
fs.readdir("/usr", function (err, files) {
if (err) throw err;
puts("/usr files: " + files);
});
- Synchronous fs operations exposed, use with care.
- tcp.Connection.prototype.readPause() and readResume()
renamed to pause() and resume()
- http.ServerResponse.prototype.sendHeader() renamed to
writeHeader(). Now accepts reasonPhrase.
* Compact garbage on idle.
* Configurable debug ports, and --debug-brk (Zoran Tomicic)
* Better command line option parsing (Jeremy Ashkenas)
* Add fs.chmod (Micheil Smith), fs.lstat (Isaac Z. Schlueter)
* Fixes to process.mixin (Rasmus Andersson, Benjamin Thomas)
* Upgrade V8 to 2.1.1
2010.02.17, Version 0.1.29, 87d5e5b316a4276bcf881f176971c1a237dcdc7a
* Major API Changes * Major API Changes
- Remove 'file' module - Remove 'file' module

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.29, 2010.02.17 Version, 0.1.30, 2010.02.22
== NAME == NAME

4
doc/index.html

@ -98,8 +98,8 @@ 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.17 2010.02.22
<a href="http://nodejs.org/dist/node-v0.1.29.tar.gz">node-v0.1.29.tar.gz</a> <a href="http://nodejs.org/dist/node-v0.1.30.tar.gz">node-v0.1.30.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.29" VERSION="0.1.30"
APPNAME="node.js" APPNAME="node.js"
import js2c import js2c

Loading…
Cancel
Save