Skip to content

Commit 2134aa3

Browse files
committed
2012.06.29, Version 0.8.1 (stable)
* V8: upgrade to v3.11.10.12 * npm: upgrade to v1.1.33 - Support for parallel use of the cache folder - Retry on registry timeouts or network failures (Trent Mick) - Reduce 'engines' failures to a warning - Use new zsh completion if aviailable (Jeremy Cantrell) * Fix #3577 Un-break require('sys') * util: speed up formatting of large arrays/objects (Ben Noordhuis) * windows: make fs.realpath(Sync) work with UNC paths (Bert Belder) * build: fix --shared-v8 option (Ben Noordhuis) * doc: `detached` is a boolean (Andreas Madsen) * build: use proper python interpreter (Ben Noordhuis) * build: expand ~ in `./configure --prefix=~/a/b/c` (Ben Noordhuis) * build: handle CC env var with spaces (Gabriel de Perthuis) * build: fix V8 build when compiling with gcc 4.5 (Ben Noordhuis) * build: fix --shared-v8 option (Ben Noordhuis) * windows msi: Fix icon issue which caused huge file size (Bert Belder) * unix: assume that dlopen() may clobber dlerror() (Ben Noordhuis) * sunos: fix memory corruption bugs (Ben Noordhuis) * windows: better (f)utimes and (f)stat (Bert Belder)
1 parent 3644b0b commit 2134aa3

File tree

3 files changed

+44
-2
lines changed

3 files changed

+44
-2
lines changed

AUTHORS

+3
Original file line numberDiff line numberDiff line change
@@ -319,3 +319,6 @@ Simon Sturmer <[email protected]>
319319
Joel Brandt <[email protected]>
320320
Marc Harter <[email protected]>
321321
322+
Ben Kelly <[email protected]>
323+
Felix Böhm <[email protected]>
324+
Gabriel de Perthuis <[email protected]>

ChangeLog

+40-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,43 @@
1-
2012.06.25, Version 0.8.0 (stable)
1+
2012.06.29, Version 0.8.1 (stable)
2+
3+
* V8: upgrade to v3.11.10.12
4+
5+
* npm: upgrade to v1.1.33
6+
- Support for parallel use of the cache folder
7+
- Retry on registry timeouts or network failures (Trent Mick)
8+
- Reduce 'engines' failures to a warning
9+
- Use new zsh completion if aviailable (Jeremy Cantrell)
10+
11+
* Fix #3577 Un-break require('sys')
12+
13+
* util: speed up formatting of large arrays/objects (Ben Noordhuis)
14+
15+
* windows: make fs.realpath(Sync) work with UNC paths (Bert Belder)
16+
17+
* build: fix --shared-v8 option (Ben Noordhuis)
18+
19+
* doc: `detached` is a boolean (Andreas Madsen)
20+
21+
* build: use proper python interpreter (Ben Noordhuis)
22+
23+
* build: expand ~ in `./configure --prefix=~/a/b/c` (Ben Noordhuis)
24+
25+
* build: handle CC env var with spaces (Gabriel de Perthuis)
26+
27+
* build: fix V8 build when compiling with gcc 4.5 (Ben Noordhuis)
28+
29+
* build: fix --shared-v8 option (Ben Noordhuis)
30+
31+
* windows msi: Fix icon issue which caused huge file size (Bert Belder)
32+
33+
* unix: assume that dlopen() may clobber dlerror() (Ben Noordhuis)
34+
35+
* sunos: fix memory corruption bugs (Ben Noordhuis)
36+
37+
* windows: better (f)utimes and (f)stat (Bert Belder)
38+
39+
40+
2012.06.25, Version 0.8.0 (stable), 8b8a7a7f9b41e74e1e810d0330738ad06fc302ec
241

342
* V8: upgrade to v3.11.10.10
443

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