From: isaacs Date: Mon, 25 Feb 2013 18:58:10 +0000 (-0800) Subject: 2013.02.25, Version 0.8.21 (Stable) X-Git-Tag: v0.8.21^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=530d8c05d4c546146f18e5ba811d7eb3b7b7c0c5;p=platform%2Fupstream%2Fnodejs.git 2013.02.25, Version 0.8.21 (Stable) * http: Do not free the wrong parser on socket close (isaacs) * http: Handle hangup writes more gently (isaacs) * zlib: fix assert on bad input (Ben Noordhuis) * test: add TAP output to the test runner (Timothy J Fontaine) * unix: Handle EINPROGRESS from domain sockets (Ben Noordhuis) --- diff --git a/AUTHORS b/AUTHORS index 8181644..bf784aa 100644 --- a/AUTHORS +++ b/AUTHORS @@ -380,3 +380,4 @@ Dan Milon Jacob Gable Rick Yakubowski Dan Kohn +Timothy J Fontaine diff --git a/ChangeLog b/ChangeLog index 016acdc..9aa9f7e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,15 @@ -2013.02.15, Version 0.8.20 (Stable) +2013.02.25, Version 0.8.21 (Stable) + +* http: Do not free the wrong parser on socket close (isaacs) + +* http: Handle hangup writes more gently (isaacs) + +* zlib: fix assert on bad input (Ben Noordhuis) + +* test: add TAP output to the test runner (Timothy J Fontaine) + + +2013.02.15, Version 0.8.20 (Stable), e10c75579b536581ddd7ae4e2c3bf8a9d550d343 * npm: Upgrade to v1.2.11 diff --git a/src/node_version.h b/src/node_version.h index e553a51..8151184 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -30,7 +30,7 @@ # define NODE_TAG "" #endif -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)