bump version v0.1.99
authorRyan Dahl <ry@tinyclouds.org>
Mon, 21 Jun 2010 20:34:10 +0000 (13:34 -0700)
committerRyan Dahl <ry@tinyclouds.org>
Mon, 21 Jun 2010 20:34:10 +0000 (13:34 -0700)
AUTHORS
ChangeLog
doc/api_header.html
doc/index.html
wscript

diff --git a/AUTHORS b/AUTHORS
index 0153fe9..6432000 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -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>
index 0979de4..eac9e80 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)
 
index e6f4e23..cf74f9f 100644 (file)
 <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'>
index 5f2b762..abfe191 100644 (file)
@@ -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>
diff --git a/wscript b/wscript
index cc2ef73..6a5726c 100644 (file)
--- a/wscript
+++ b/wscript
@@ -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