This commit is contained in:
Ryan 2009-08-27 12:31:52 +02:00
Родитель 00a03dfee2
Коммит 31db4f1ed8
4 изменённых файлов: 29 добавлений и 5 удалений

Просмотреть файл

@ -1,4 +1,28 @@
2009.08.21, Version 0.1.6, 9c97b1db3099d61cd292aa59ec2227a619f3a7ab
2009.08.27, Version 0.1.7
* Feature: global 'process' object. Emits "exit".
* Feature: promise.wait()
* Feature: node.stdio
* Feature: EventEmitters emit "newListener" when listeners are added
* API: Use flat object instead of array-of-arrays for HTTP headers.
* API: Remove buffered file object (node.File)
* API: require(), include() are synchronous. (Uses continuations.)
* API: Deprecate onLoad and onExit.
* API: Rename node.Process to node.ChildProcess
* Refactor node.Process to take advantage of evcom_reader/writer.
* Upgrade v8 to 1.3.7
2009.08.22, Version 0.1.6, 9c97b1db3099d61cd292aa59ec2227a619f3a7ab
* Bugfix: Ignore SIGPIPE.

Просмотреть файл

@ -10,7 +10,7 @@
namespace node {
#define NODE_VERSION "0.1.6"
#define NODE_VERSION "0.1.7"
#define NODE_DEFINE_CONSTANT(target, constant) \
(target)->Set(v8::String::NewSymbol(#constant), \

Просмотреть файл

@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
Version, 0.1.6, 2009.08.22
Version, 0.1.7, 2009.08.27
== Name

Просмотреть файл

@ -154,8 +154,8 @@ Server running at http://127.0.0.1:8000/</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
2009.08.22
<a href="http://s3.amazonaws.com/four.livejournal/20090822/node-0.1.6.tar.gz">node-0.1.6.tar.gz</a>
2009.08.27
<a href="http://s3.amazonaws.com/four.livejournal/20090827/node-0.1.7.tar.gz">node-0.1.7.tar.gz</a>
</p>
<h2 id="build">Build</h2>