Skip to content

Commit c50c33e

Browse files
committed
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)
1 parent ed825f4 commit c50c33e

File tree

4 files changed

+24
-2
lines changed

4 files changed

+24
-2
lines changed

AUTHORS

+3
Original file line numberDiff line numberDiff line change
@@ -372,3 +372,6 @@ Francois Marier <[email protected]>
372372
Trevor Norris <[email protected]>
373373
Joshua Erickson <[email protected]>
374374
Kai Sasaki Lewuathe <[email protected]>
375+
Nicolas Chambrier <[email protected]>
376+
Tim Bradshaw <[email protected]>
377+
Johannes Ewald <[email protected]>

ChangeLog

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1-
2012.12.13, Version 0.8.16 (Stable)
1+
2012.01.09, Version 0.8.17 (Stable)
2+
3+
* npm: Upgrade to v1.2.0
4+
- peerDependencies (Domenic Denicola)
5+
- node-gyp v0.8.2 (Nathan Rajlich)
6+
- Faster installs from github user/project shorthands (Nathan Zadoks)
7+
8+
* typed arrays: fix 32 bit size/index overflow (Ben Noordhuis)
9+
10+
* http: Improve performance of single-packet responses (Ben Noordhuis)
11+
12+
* install: fix openbsd man page location (Ben Noordhuis)
13+
14+
* http: bubble up parser errors to ClientRequest (Brian White)
15+
16+
17+
2012.12.13, Version 0.8.16 (Stable), 1c9c6277d5cfcaaac8569c0c8f7daa64292048a9
218

319
* npm: Upgrade to 1.1.69
420

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# define NODE_TAG ""
3131
#endif
3232

33-
#define NODE_VERSION_IS_RELEASE 0
33+
#define NODE_VERSION_IS_RELEASE 1
3434

3535
#ifndef NODE_STRINGIFY
3636
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

tools/changelog-head.sh

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
cat ChangeLog | {
33
s=-1
44
while read line; do
5+
if [ "${line:0:1}" == "-" ]; then
6+
line=" $line"
7+
fi
58
if [ "${line:0:1}" == "2" ]; then
69
let "++s"
710
fi

0 commit comments

Comments
 (0)