diff options
author | isaacs <i@izs.me> | 2013-01-09 16:04:21 -0800 |
---|---|---|
committer | isaacs <i@izs.me> | 2013-01-09 16:55:12 -0800 |
commit | c50c33e9397d7a0a8717e8ce7530572907c054ad (patch) | |
tree | 445f22682a5654f9fc4aa846bfabeb0bff801f43 | |
parent | ed825f488867d7586bee6ca4feb5fe5b0461775e (diff) | |
download | node-new-v0.8.17-release.tar.gz |
2012.01.09, Version 0.8.17 (Stable)v0.8.17v0.8.17-release
* 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)
-rw-r--r-- | AUTHORS | 3 | ||||
-rw-r--r-- | ChangeLog | 18 | ||||
-rw-r--r-- | src/node_version.h | 2 | ||||
-rw-r--r-- | tools/changelog-head.sh | 3 |
4 files changed, 24 insertions, 2 deletions
@@ -372,3 +372,6 @@ Francois Marier <francois@mozilla.com> Trevor Norris <trev.norris@gmail.com> Joshua Erickson <josh@snoj.us> Kai Sasaki Lewuathe <sasaki_kai@lewuathe.sakura.ne.jp> +Nicolas Chambrier <naholyr@gmail.com> +Tim Bradshaw <tfb@cley.com> +Johannes Ewald <mail@johannesewald.de> @@ -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 c611332e4b..d68d0077e5 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 e0cec16638..94821e107f 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 |