Browse Source

bump version

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

19
ChangeLog

@ -1,4 +1,21 @@
2009.11.28, Version 0.1.20
2009.12.06, Version 0.1.21
* Feature: Add HTTP client TLS support (Rhys Jones)
* Bugfix: use --jobs=1 with WAF
* Bugfix: Don't use chunked encoding for 1.0 requests
* Bugfix: Duplicated header weren't handled correctly
* Improve sys.inspect (Xavier Shay)
* Upgrade v8 to 2.0.3
* Use CommonJS assert API (Felix Geisendörfer, Karl Guertin)
2009.11.28, Version 0.1.20, aa42c6790da8ed2cd2b72051c07f6251fe1724d8
* Add gnutls version to configure script

2
doc/api.txt

@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl <ry@tinyclouds.org>
Version, 0.1.20, 2009.11.28
Version, 0.1.21, 2009.12.06
== 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>
</p>
<p>
2009.11.28
2009.12.06
<a
href="http://s3.amazonaws.com/four.livejournal/20091128/node-v0.1.20.tar.gz">node-v0.1.20.tar.gz</a>
href="http://s3.amazonaws.com/four.livejournal/20091206/node-v0.1.21.tar.gz">node-v0.1.21.tar.gz</a>
</p>
<h2 id="build">Build</h2>

2
wscript

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

Loading…
Cancel
Save