Browse Source

bump version

v0.7.4-release v0.1.2
Ryan 16 years ago
parent
commit
e10fbab00f
  1. 16
      ChangeLog
  2. 2
      website/api.txt
  3. 4
      website/index.html
  4. 2
      wscript

16
ChangeLog

@ -1,3 +1,19 @@
2009.08.01, Version 0.1.2
* Add DNS API
* node.tcp.Server's backlog option is now an argument to listen()
* Upgrade V8 to 1.3.1
* Bugfix: Default to chunked for client requests without C-Length.
* Bugfix: Line numbers in stack traces.
* Bugfix: negative integers in raw encoding stream
* Bugfix: node.fs.File was not passing args to promise callbacks.
2009.07.27, Version 0.1.1 2009.07.27, Version 0.1.1
* Simplify and clean up ObjectWrap. * Simplify and clean up ObjectWrap.

2
website/api.txt

@ -1,7 +1,7 @@
NODE(1) NODE(1)
======= =======
Ryan Dahl <ry@tinyclouds.org> Ryan Dahl <ry@tinyclouds.org>
Version, 0.1.1, 2009.07.27 Version, 0.1.2, 2009.08.01
== NAME == NAME

4
website/index.html

@ -155,6 +155,10 @@ Server running at http://127.0.0.1:8000/</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>
<ul> <ul>
<li>
2009.08.01
<a href="http://s3.amazonaws.com/four.livejournal/20090801/node-0.1.2.tar.gz">node-0.1.2.tar.gz</a>
</li>
<li> <li>
2009.07.27 2009.07.27
<a href="http://s3.amazonaws.com/four.livejournal/20090727/node-0.1.1.tar.gz">node-0.1.1.tar.gz</a> <a href="http://s3.amazonaws.com/four.livejournal/20090727/node-0.1.1.tar.gz">node-0.1.1.tar.gz</a>

2
wscript

@ -6,7 +6,7 @@ from logging import fatal
import js2c import js2c
VERSION='0.1.1' VERSION='0.1.2'
APPNAME='node' APPNAME='node'
srcdir = '.' srcdir = '.'

Loading…
Cancel
Save