0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 15:06:33 +01:00

bump version

This commit is contained in:
Ryan Dahl 2009-11-07 20:20:30 +01:00
parent a021db151a
commit d1f69ef35d
4 changed files with 15 additions and 5 deletions

View File

@ -1,4 +1,14 @@
2009.11.03, Version 0.1.16
2009.11.07, Version 0.1.17
* Feature: process.chdir() (Brandon Beacher)
* Revert http parser upgrade. (b893859c34f05db5c45f416949ebc0eee665cca6)
Broke keep-alive.
* API: rename process.inherits to sys.inherits
2009.11.03, Version 0.1.16, 726865af7bbafe58435986f4a193ff11c84e4bfe
* API: Use CommonJS-style module requiring
- require("/sys.js") becomes require("sys")

View File

@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
Version, 0.1.16, 2009.11.03
Version, 0.1.17, 2009.11.07
== NAME

View File

@ -97,8 +97,8 @@ server.listen(7000, "localhost");</pre>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
2009.11.03
<a href="http://s3.amazonaws.com/four.livejournal/20091103/node-v0.1.16.tar.gz">node-v0.1.16.tar.gz</a>
2009.11.07
<a href="http://s3.amazonaws.com/four.livejournal/20091107/node-v0.1.17.tar.gz">node-v0.1.17.tar.gz</a>
</p>
<h2 id="build">Build</h2>

View File

@ -7,7 +7,7 @@ from os.path import join, dirname, abspath
from logging import fatal
cwd = os.getcwd()
VERSION="0.1.16"
VERSION="0.1.17"
APPNAME="node.js"
import js2c