This commit is contained in:
Ryan Dahl 2010-06-21 13:34:10 -07:00
Родитель 51bd1b4483
Коммит a620b7298f
5 изменённых файлов: 27 добавлений и 5 удалений

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

@ -85,3 +85,8 @@ Aapo Laitinen <aapo.laitinen@iki.fi>
Sam Hughes <sam@samuelhughes.com>
Orlando Vazquez <ovazquez@gmail.com>
Raffaele Sena <raff367@gmail.com>
Brian McKenna <brian@brianmckenna.org>
Paul Querna <pquerna@apache.org>
Ben Lowery <ben@blowery.org>
Peter Dekkers <soderblom.peter@gmail.com>
David Siegel <david@artcom.de>

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

@ -1,4 +1,21 @@
2010.06.11, Version 0.1.98
2010.06.21, Version 0.1.99
* Datagram sockets (Paul Querna)
* fs.writeFile could not handle utf8 (Felix Geisendörfer)
and now accepts Buffers (Aaron Heckmann)
* Fix crypto memory leaks.
* A replacement for decodeURIComponent that doesn't throw.
(Isaac Schlueter)
* Only concatenate some incoming HTTP headers. (Peter Griess)
* Upgrade V8 to 2.2.18
2010.06.11, Version 0.1.98, 10d8adb08933d1d4cea60192c2a31c56d896733d
* Port to Windows/Cygwin (Raffaele Sena)

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

@ -295,7 +295,7 @@
<body>
<div id="toc">
<div id="toctitle">Node v0.1.98</div>
<div id="toctitle">Node v0.1.99</div>
<noscript>JavaScript must be enabled in your browser to display the table of contents.</noscript>
</div>
<div id='man'>

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

@ -92,8 +92,8 @@ net.createServer(function (socket) {
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
<p>
2010.06.11
<a href="http://nodejs.org/dist/node-v0.1.98.tar.gz">node-v0.1.98.tar.gz</a>
2010.06.21
<a href="http://nodejs.org/dist/node-v0.1.99.tar.gz">node-v0.1.99.tar.gz</a>
</p>
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>

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

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