Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-06-22 00:34:10 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-06-22 00:34:10 +0400
commita620b7298f68f68a855306437a3b60b650d61d78 (patch)
treee7f843aa6211b69c86e3a0c11f7bb843dccc1aaa
parent51bd1b4483f60d85ee19274aab98505a0b5c9105 (diff)
bump versionv0.1.99
-rw-r--r--AUTHORS5
-rw-r--r--ChangeLog19
-rw-r--r--doc/api_header.html2
-rw-r--r--doc/index.html4
-rw-r--r--wscript2
5 files changed, 27 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index 0153fe93c89..64320001d6e 100644
--- 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>
diff --git a/ChangeLog b/ChangeLog
index 0979de4817d..eac9e8057d3 100644
--- 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)
diff --git a/doc/api_header.html b/doc/api_header.html
index e6f4e2312e8..cf74f9f91a4 100644
--- a/doc/api_header.html
+++ b/doc/api_header.html
@@ -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'>
diff --git a/doc/index.html b/doc/index.html
index 5f2b76267ca..abfe1912262 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -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 cc2ef733b32..6a5726c794f 100644
--- 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