Skip to content

Commit 8d9766a

Browse files
committed
2012.06.11, Version 0.7.10 (unstable)
* Roll V8 back to 3.9.24.31 * build: x64 target should always pass -m64 (Robert Mustacchi) * add NODE_EXTERN to node::Start (Joel Brandt) * repl: Warn about running npm commands (isaacs) * slab_allocator: fix crash in dtor if V8 is dead (Ben Noordhuis) * slab_allocator: fix leak of Persistent handles (Shigeki Ohtsu) * windows/msi: add node.js prompt to startmenu (Jeroen Janssen) * windows/msi: fix adding node to PATH (Jeroen Janssen) * windows/msi: add start menu links when installing (Jeroen Janssen) * windows: don't install x64 version into the 'program files (x86)' folder (Matt Gollob) * domain: Fix #3379 domain.intercept no longer passes error arg to cb (Marc Harter) * fs: make callbacks run in global context (Ben Noordhuis) * fs: enable fs.realpath on windows (isaacs) * child_process: expose UV_PROCESS_DETACHED as options.detached (Charlie McConnell) * child_process: new stdio API for .spawn() method (Fedor Indutny) * child_process: spawn().ref() and spawn().unref() (Fedor Indutny) * Upgrade npm to 1.1.25 - Enable npm link on windows - Properly remove sh-shim on Windows - Abstract out registry client and logger
1 parent 76f6a4a commit 8d9766a

File tree

3 files changed

+47
-2
lines changed

3 files changed

+47
-2
lines changed

AUTHORS

+5
Original file line numberDiff line numberDiff line change
@@ -314,3 +314,8 @@ Kevin Gadd <[email protected]>
314314
Ray Solomon <[email protected]>
315315
Kevin Bowman <[email protected]>
316316
Jeroen Janssen <[email protected]>
317+
Matt Gollob <[email protected]>
318+
Simon Sturmer <[email protected]>
319+
Joel Brandt <[email protected]>
320+
Marc Harter <[email protected]>
321+

ChangeLog

+41-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,44 @@
1-
2012.05.28, Version 0.7.9 (unstable)
1+
2012.06.11, Version 0.7.10 (unstable)
2+
3+
* Roll V8 back to 3.9.24.31
4+
5+
* build: x64 target should always pass -m64 (Robert Mustacchi)
6+
7+
* add NODE_EXTERN to node::Start (Joel Brandt)
8+
9+
* repl: Warn about running npm commands (isaacs)
10+
11+
* slab_allocator: fix crash in dtor if V8 is dead (Ben Noordhuis)
12+
13+
* slab_allocator: fix leak of Persistent handles (Shigeki Ohtsu)
14+
15+
* windows/msi: add node.js prompt to startmenu (Jeroen Janssen)
16+
17+
* windows/msi: fix adding node to PATH (Jeroen Janssen)
18+
19+
* windows/msi: add start menu links when installing (Jeroen Janssen)
20+
21+
* windows: don't install x64 version into the 'program files (x86)' folder (Matt Gollob)
22+
23+
* domain: Fix #3379 domain.intercept no longer passes error arg to cb (Marc Harter)
24+
25+
* fs: make callbacks run in global context (Ben Noordhuis)
26+
27+
* fs: enable fs.realpath on windows (isaacs)
28+
29+
* child_process: expose UV_PROCESS_DETACHED as options.detached (Charlie McConnell)
30+
31+
* child_process: new stdio API for .spawn() method (Fedor Indutny)
32+
33+
* child_process: spawn().ref() and spawn().unref() (Fedor Indutny)
34+
35+
* Upgrade npm to 1.1.25
36+
- Enable npm link on windows
37+
- Properly remove sh-shim on Windows
38+
- Abstract out registry client and logger
39+
40+
41+
2012.05.28, Version 0.7.9 (unstable), 782277f11a753ded831439ed826448c06fc0f356
242

343
* Upgrade V8 to 3.11.1
444

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define NODE_MAJOR_VERSION 0
3030
#define NODE_MINOR_VERSION 7
3131
#define NODE_PATCH_VERSION 10
32-
#define NODE_VERSION_IS_RELEASE 0
32+
#define NODE_VERSION_IS_RELEASE 1
3333

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

0 commit comments

Comments
 (0)