From: Ryan Dahl Date: Mon, 21 Jun 2010 20:34:10 +0000 (-0700) Subject: bump version X-Git-Tag: v0.1.99^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a620b7298f68f68a855306437a3b60b650d61d78;p=platform%2Fupstream%2Fnodejs.git bump version --- diff --git a/AUTHORS b/AUTHORS index 0153fe9..6432000 100644 --- a/AUTHORS +++ b/AUTHORS @@ -85,3 +85,8 @@ Aapo Laitinen Sam Hughes Orlando Vazquez Raffaele Sena +Brian McKenna +Paul Querna +Ben Lowery +Peter Dekkers +David Siegel diff --git a/ChangeLog b/ChangeLog index 0979de4..eac9e80 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 e6f4e23..cf74f9f 100644 --- a/doc/api_header.html +++ b/doc/api_header.html @@ -295,7 +295,7 @@
-
Node v0.1.98
+
Node v0.1.99
diff --git a/doc/index.html b/doc/index.html index 5f2b762..abfe191 100644 --- a/doc/index.html +++ b/doc/index.html @@ -92,8 +92,8 @@ net.createServer(function (socket) { git repo

- 2010.06.11 - node-v0.1.98.tar.gz + 2010.06.21 + node-v0.1.99.tar.gz

Historical: versions, docs

diff --git a/wscript b/wscript index cc2ef73..6a5726c 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