diff options
author | isaacs <i@izs.me> | 2013-02-25 10:58:10 -0800 |
---|---|---|
committer | isaacs <i@izs.me> | 2013-02-25 13:07:25 -0800 |
commit | 530d8c05d4c546146f18e5ba811d7eb3b7b7c0c5 (patch) | |
tree | b718fdb5e1a9a68f22eba168cf9ffe15e478f88d | |
parent | ff540e19a4d5437477d25586fe1dd01d66f8f69a (diff) | |
download | node-new-v0.8.21-release.tar.gz |
2013.02.25, Version 0.8.21 (Stable)v0.8.21v0.8.21-release
* 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)
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | ChangeLog | 13 | ||||
-rw-r--r-- | src/node_version.h | 2 |
3 files changed, 14 insertions, 2 deletions
@@ -380,3 +380,4 @@ Dan Milon <danmilon@gmail.com> Jacob Gable <jacob.gable@gmail.com> Rick Yakubowski <richard@orpha-systems.com> Dan Kohn <dan@dankohn.com> +Timothy J Fontaine <tjfontaine@gmail.com> @@ -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 e553a51d4f..81511843a6 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) |