Browse Source

bump version

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

25
ChangeLog

@ -1,4 +1,27 @@
2010.01.09, Version 0.1.25 2010.01.20, Version 0.1.26
* Bugfix, HTTP eof causing crash (Ben Williamson)
* Better error message on SyntaxError
* API: Move Promise and EventEmitter into 'events' module
* API: Add process.nextTick()
* Allow optional params to setTimeout, setInterval
(Michaeljohn Clement)
* API: change some Promise behavior (Felix Geisendörfer)
- Removed Promise.cancel()
- Support late callback binding
- Make unhandled Promise errors throw an exception
* Upgrade V8 to 2.0.6.1
* Solaris port
2010.01.09, Version 0.1.25, 39ca93549af91575ca9d4cbafd1e170fbcef3dfa
* sys.inspect() improvements (Tim Caswell) * sys.inspect() improvements (Tim Caswell)

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.25, 2010.01.09 Version, 0.1.26, 2010.01.20
== 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.01.09 2010.01.20
<a <a
href="http://s3.amazonaws.com/four.livejournal/20100109/node-v0.1.25.tar.gz">node-v0.1.25.tar.gz</a> href="http://s3.amazonaws.com/four.livejournal/20100120/node-v0.1.26.tar.gz">node-v0.1.26.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.25" VERSION="0.1.26"
APPNAME="node.js" APPNAME="node.js"
import js2c import js2c

Loading…
Cancel
Save