From c50c33e9397d7a0a8717e8ce7530572907c054ad Mon Sep 17 00:00:00 2001 From: isaacs Date: Wed, 9 Jan 2013 16:04:21 -0800 Subject: 2012.01.09, Version 0.8.17 (Stable) * npm: Upgrade to v1.2.0 - peerDependencies (Domenic Denicola) - node-gyp v0.8.2 (Nathan Rajlich) - Faster installs from github user/project shorthands (Nathan Zadoks) * typed arrays: fix 32 bit size/index overflow (Ben Noordhuis) * http: Improve performance of single-packet responses (Ben Noordhuis) * install: fix openbsd man page location (Ben Noordhuis) * http: bubble up parser errors to ClientRequest (Brian White) --- AUTHORS | 3 +++ ChangeLog | 18 +++++++++++++++++- src/node_version.h | 2 +- tools/changelog-head.sh | 3 +++ 4 files changed, 24 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 8e2f1d86917..35b63051049 100644 --- a/AUTHORS +++ b/AUTHORS @@ -372,3 +372,6 @@ Francois Marier Trevor Norris Joshua Erickson Kai Sasaki Lewuathe +Nicolas Chambrier +Tim Bradshaw +Johannes Ewald diff --git a/ChangeLog b/ChangeLog index c0b1c999098..163372316c8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,20 @@ -2012.12.13, Version 0.8.16 (Stable) +2012.01.09, Version 0.8.17 (Stable) + +* npm: Upgrade to v1.2.0 + - peerDependencies (Domenic Denicola) + - node-gyp v0.8.2 (Nathan Rajlich) + - Faster installs from github user/project shorthands (Nathan Zadoks) + +* typed arrays: fix 32 bit size/index overflow (Ben Noordhuis) + +* http: Improve performance of single-packet responses (Ben Noordhuis) + +* install: fix openbsd man page location (Ben Noordhuis) + +* http: bubble up parser errors to ClientRequest (Brian White) + + +2012.12.13, Version 0.8.16 (Stable), 1c9c6277d5cfcaaac8569c0c8f7daa64292048a9 * npm: Upgrade to 1.1.69 diff --git a/src/node_version.h b/src/node_version.h index c611332e4b8..d68d0077e58 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) diff --git a/tools/changelog-head.sh b/tools/changelog-head.sh index e0cec166385..94821e107f2 100644 --- a/tools/changelog-head.sh +++ b/tools/changelog-head.sh @@ -2,6 +2,9 @@ cat ChangeLog | { s=-1 while read line; do + if [ "${line:0:1}" == "-" ]; then + line=" $line" + fi if [ "${line:0:1}" == "2" ]; then let "++s" fi -- cgit v1.2.3