Skip to content

Commit 0544a58

Browse files
committed
2012.08.07, Version 0.8.6 (Stable)
* npm: Upgrade to v1.1.48 * Add 'make binary' to build binary tarballs for all Unixes (Nathan Rajlich) * zlib: Emit 'close' on destroy(). (Dominic Tarr) * child_process: Fix stdout=null when stdio=['pipe'] (Tyler Neylon) * installer: prevent ETXTBSY errors (Ben Noordhuis) * installer: honor --without-npm, default install path (Ben Noordhuis) * net: make pause work with connecting sockets (Bert Belder) * installer: fix cross-compile installs (Ben Noordhuis) * net: fix .listen({fd:0}) (Ben Noordhuis) * windows: map WSANO_DATA to UV_ENOENT (Bert Belder)
1 parent f11a3df commit 0544a58

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -353,3 +353,4 @@ Mike Morearty <[email protected]>
353353
Peter Rybin <[email protected]>
354354
Eugen Dueck <[email protected]>
355355
Gil Pedersen <[email protected]>
356+
Tyler Neylon <[email protected]>

ChangeLog

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
2012.08.02, Version 0.8.5 (Stable)
1+
2012.08.07, Version 0.8.6 (Stable)
2+
3+
* npm: Upgrade to v1.1.48
4+
5+
* Add 'make binary' to build binary tarballs for all Unixes (Nathan Rajlich)
6+
7+
* zlib: Emit 'close' on destroy(). (Dominic Tarr)
8+
9+
* child_process: Fix stdout=null when stdio=['pipe'] (Tyler Neylon)
10+
11+
* installer: prevent ETXTBSY errors (Ben Noordhuis)
12+
13+
* installer: honor --without-npm, default install path (Ben Noordhuis)
14+
15+
* net: make pause work with connecting sockets (Bert Belder)
16+
17+
* installer: fix cross-compile installs (Ben Noordhuis)
18+
19+
* net: fix .listen({fd:0}) (Ben Noordhuis)
20+
21+
* windows: map WSANO_DATA to UV_ENOENT (Bert Belder)
22+
23+
24+
2012.08.02, Version 0.8.5 (Stable), 9b86a4453f0c76f2707a75c0b2343aba33ec63bc
225

326
* node: tag Encode and friends NODE_EXTERN (Ben Noordhuis)
427

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#define NODE_MAJOR_VERSION 0
2626
#define NODE_MINOR_VERSION 8
2727
#define NODE_PATCH_VERSION 6
28-
#define NODE_VERSION_IS_RELEASE 0
28+
#define NODE_VERSION_IS_RELEASE 1
2929

3030
#ifndef NODE_STRINGIFY
3131
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)