Skip to content

Commit 9b86a44

Browse files
committed
2012.08.02, Version 0.8.5 (Stable)
* node: tag Encode and friends NODE_EXTERN (Ben Noordhuis) * fs: fix ReadStream / WriteStream missing callback (Gil Pedersen) * fs: fix readFileSync("/proc/cpuinfo") regression (Ben Noordhuis) * installer: don't assume bash is installed (Ben Noordhuis) * Report errors properly from --eval and stdin (isaacs) * assert: fix throws() throws an error without message property (koichik) * cluster: fix libuv assert in net.listen() (Ben Noordhuis) * build: always link sunos builds with libumem (Trent Mick) * build: improve armv7 / hard-float detection (Adam Malcontenti-Wilson) * https: Use host header as effective servername (isaacs) * sunos: work around OS bug to prevent fs.watch() from spinning (Bryan Cantrill) * linux: fix 'two watchers, one path' segfault (Ben Noordhuis) * windows: fix memory leaks in many fs functions (Bert Belder) * windows: don't allow directories to be opened for writing/appending (Bert Belder) * windows: make fork() work even when not all stdio handles are valid (Bert Belder) * windows: make unlink() not remove mount points, and improve performance (Bert Belder) * build: Sign pkg installer for OS X (isaacs)
1 parent 2dd710e commit 9b86a44

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed

AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -351,3 +351,5 @@ Philipp Hagemeister <[email protected]>
351351
George Shank <[email protected]>
352352
Mike Morearty <[email protected]>
353353
Peter Rybin <[email protected]>
354+
Eugen Dueck <[email protected]>
355+
Gil Pedersen <[email protected]>

ChangeLog

+38-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,41 @@
1-
2012.07.25, Version 0.8.4 (Stable)
1+
2012.08.02, Version 0.8.5 (Stable)
2+
3+
* node: tag Encode and friends NODE_EXTERN (Ben Noordhuis)
4+
5+
* fs: fix ReadStream / WriteStream missing callback (Gil Pedersen)
6+
7+
* fs: fix readFileSync("/proc/cpuinfo") regression (Ben Noordhuis)
8+
9+
* installer: don't assume bash is installed (Ben Noordhuis)
10+
11+
* Report errors properly from --eval and stdin (isaacs)
12+
13+
* assert: fix throws() throws an error without message property (koichik)
14+
15+
* cluster: fix libuv assert in net.listen() (Ben Noordhuis)
16+
17+
* build: always link sunos builds with libumem (Trent Mick)
18+
19+
* build: improve armv7 / hard-float detection (Adam Malcontenti-Wilson)
20+
21+
* https: Use host header as effective servername (isaacs)
22+
23+
* sunos: work around OS bug to prevent fs.watch() from spinning (Bryan Cantrill)
24+
25+
* linux: fix 'two watchers, one path' segfault (Ben Noordhuis)
26+
27+
* windows: fix memory leaks in many fs functions (Bert Belder)
28+
29+
* windows: don't allow directories to be opened for writing/appending (Bert Belder)
30+
31+
* windows: make fork() work even when not all stdio handles are valid (Bert Belder)
32+
33+
* windows: make unlink() not remove mount points, and improve performance (Bert Belder)
34+
35+
* build: Sign pkg installer for OS X (isaacs)
36+
37+
38+
2012.07.25, Version 0.8.4 (Stable), f98562fcd7d1cab573ca4dc1612157d6999befd4
239

340
* V8: Upgrade to 3.11.10.17
441

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 5
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)