Skip to content

Commit 5cda254

Browse files
committed
2012.03.30, Version 0.7.7 (unstable)
* Upgrade V8 to 3.9.24.7 * Upgrade npm to 1.1.15 * Handle Emoji characters properly (Erik Corry, Bert Belder) * readline: migrate ansi/vt100 logic from tty to readline (Nathan Rajlich) * readline: Fix multiline handling (Alex Kocharin) * add a -i/--interactive flag to force the REPL (Nathan Rajlich) * debugger: add breakOnException command (Fedor Indutny) * cluster: kill workers when master dies (Andreas Madsen) * cluster: add graceful disconnect support (Andreas Madsen) * child_process: Separate 'close' event from 'exit' (Charlie McConnell) * typed arrays: add Uint8ClampedArray (Mikael Bourges-Sevenier) * buffer: Fix byte alignment issues (Ben Noordhuis, Erik Lundin) * tls: fix CryptoStream.setKeepAlive() (Shigeki Ohtsu) * Expose http parse error codes (Felix Geisendörfer) * events: don't delete the listeners array (Ben Noordhuis, Nathan Rajlich) * process: add process.config to view node's ./configure settings (Nathan Rajlich) * process: process.execArgv to see node's arguments (Micheil Smith) * process: fix process.title setter (Ben Noordhuis) * timers: handle negative or non-numeric timeout values (Ben Noordhuis)
1 parent 9a70d99 commit 5cda254

File tree

3 files changed

+51
-2
lines changed

3 files changed

+51
-2
lines changed

AUTHORS

+8
Original file line numberDiff line numberDiff line change
@@ -287,3 +287,11 @@ Ming Liu <[email protected]>
287287
Shea Levy <[email protected]>
288288
Nao Iizuka <[email protected]>
289289
Christian Ress <[email protected]>
290+
291+
Matt Ezell <[email protected]>
292+
Charlie McConnell <[email protected]>
293+
Farid Neshat <[email protected]>
294+
Johannes Wüller <[email protected]>
295+
Erik Lundin <[email protected]>
296+
Mikael Bourges-Sevenier <[email protected]>
297+
Yosef Dinerstein <[email protected]>

ChangeLog

+42-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,45 @@
1-
2012.03.13, Version 0.7.6 (unstable)
1+
2012.03.30, Version 0.7.7 (unstable)
2+
3+
* Upgrade V8 to 3.9.24.7
4+
5+
* Upgrade npm to 1.1.15
6+
7+
* Handle Emoji characters properly (Erik Corry, Bert Belder)
8+
9+
* readline: migrate ansi/vt100 logic from tty to readline (Nathan Rajlich)
10+
11+
* readline: Fix multiline handling (Alex Kocharin)
12+
13+
* add a -i/--interactive flag to force the REPL (Nathan Rajlich)
14+
15+
* debugger: add breakOnException command (Fedor Indutny)
16+
17+
* cluster: kill workers when master dies (Andreas Madsen)
18+
19+
* cluster: add graceful disconnect support (Andreas Madsen)
20+
21+
* child_process: Separate 'close' event from 'exit' (Charlie McConnell)
22+
23+
* typed arrays: add Uint8ClampedArray (Mikael Bourges-Sevenier)
24+
25+
* buffer: Fix byte alignment issues (Ben Noordhuis, Erik Lundin)
26+
27+
* tls: fix CryptoStream.setKeepAlive() (Shigeki Ohtsu)
28+
29+
* Expose http parse error codes (Felix Geisendörfer)
30+
31+
* events: don't delete the listeners array (Ben Noordhuis, Nathan Rajlich)
32+
33+
* process: add process.config to view node's ./configure settings (Nathan Rajlich)
34+
35+
* process: process.execArgv to see node's arguments (Micheil Smith)
36+
37+
* process: fix process.title setter (Ben Noordhuis)
38+
39+
* timers: handle negative or non-numeric timeout values (Ben Noordhuis)
40+
41+
42+
2012.03.13, Version 0.7.6 (unstable), f06abda6f58e517349d1b63a2cbf5a8d04a03505
243

344
* Upgrade v8 to 3.9.17
445

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