Skip to content

Commit 5d3dc0e

Browse files
committed
2013.05.13, Version 0.11.2 (Unstable)
* uv: Upgrade to 0.11.2 * V8: Upgrade to 3.19.0 * npm: Upgrade to 1.2.21 * build: Makefile should respect configure --prefix (Timothy J Fontaine) * cluster: use round-robin load balancing (Ben Noordhuis) * debugger, cluster: each worker has new debug port (Miroslav Bajtoš) * debugger: `restart` with custom debug port (Miroslav Bajtoš) * debugger: breakpoints in scripts not loaded yet (Miroslav Bajtoš) * event: EventEmitter#setMaxListeners() returns this (Sam Roberts) * events: add EventEmitter.defaultMaxListeners (Ben Noordhuis) * install: Support $(PREFIX) install target directory prefix (Olof Johansson) * os: Include netmask in os.networkInterfaces() (Ben Kelly) * path: add path.isAbsolute(path) (Ryan Doenges) * stream: Guarantee ordering of 'finish' event (isaacs) * streams: introduce .cork/.uncork/._writev (Fedor Indutny) * vm: add support for timeout argument (Andrew Paprocki)
1 parent 31e73a5 commit 5d3dc0e

File tree

3 files changed

+54
-12
lines changed

3 files changed

+54
-12
lines changed

AUTHORS

+5
Original file line numberDiff line numberDiff line change
@@ -447,3 +447,8 @@ Ryan Doenges <[email protected]>
447447
Sean Silva <[email protected]>
448448
Miroslav Bajtoš <[email protected]>
449449
Olof Johansson <[email protected]>
450+
Sam Roberts <[email protected]>
451+
Kevin Locke <[email protected]>
452+
Daniel Moore <[email protected]>
453+
Robert Kowalski <[email protected]>
454+
Nick Sullivan <[email protected]>

ChangeLog

+48-11
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,39 @@
1-
2013.04.23, Version 0.10.5 (Stable)
1+
2013.05.13, Version 0.11.2 (Unstable)
22

3-
* uv: Upgrade to 0.10.5 (isaacs)
3+
* uv: Upgrade to 0.11.2
44

5-
* build: added support for Visual Studio 2012 (Miroslav Bajtoš)
5+
* V8: Upgrade to 3.19.0
66

7-
* http: Don't try to destroy nonexistent sockets (isaacs)
7+
* npm: Upgrade to 1.2.21
88

9-
* crypto: LazyTransform on properties, not methods (isaacs)
9+
* build: Makefile should respect configure --prefix (Timothy J Fontaine)
1010

11-
* assert: put info in err.message, not err.name (Ryan Doenges)
11+
* cluster: use round-robin load balancing (Ben Noordhuis)
1212

13-
* dgram: fix no address bind() (Ben Noordhuis)
13+
* debugger, cluster: each worker has new debug port (Miroslav Bajtoš)
1414

15-
* handle_wrap: fix NULL pointer dereference (Ben Noordhuis)
15+
* debugger: `restart` with custom debug port (Miroslav Bajtoš)
1616

17-
* os: fix unlikely buffer overflow in os.type() (Ben Noordhuis)
17+
* debugger: breakpoints in scripts not loaded yet (Miroslav Bajtoš)
1818

19-
* stream: Fix unshift() race conditions (isaacs)
19+
* event: EventEmitter#setMaxListeners() returns this (Sam Roberts)
20+
21+
* events: add EventEmitter.defaultMaxListeners (Ben Noordhuis)
2022

23+
* install: Support $(PREFIX) install target directory prefix (Olof Johansson)
2124

22-
2013.04.19, Version 0.11.1 (Unstable)
25+
* os: Include netmask in os.networkInterfaces() (Ben Kelly)
26+
27+
* path: add path.isAbsolute(path) (Ryan Doenges)
28+
29+
* stream: Guarantee ordering of 'finish' event (isaacs)
30+
31+
* streams: introduce .cork/.uncork/._writev (Fedor Indutny)
32+
33+
* vm: add support for timeout argument (Andrew Paprocki)
34+
35+
36+
2013.04.19, Version 0.11.1 (Unstable), 4babd2b46ebf9fbea2c9946af5cfae25a33b2b22
2337

2438
* V8: upgrade to 3.18.0
2539

@@ -46,6 +60,29 @@
4660
* zlib: allow passing options to convenience methods (Kyle Robinson Young)
4761

4862

63+
2013.04.23, Version 0.10.5 (Stable), deeaf8fab978e3cadb364e46fb32dafdebe5f095
64+
65+
* uv: Upgrade to 0.10.5 (isaacs)
66+
67+
* build: added support for Visual Studio 2012 (Miroslav Bajtoš)
68+
69+
* http: Don't try to destroy nonexistent sockets (isaacs)
70+
71+
* crypto: LazyTransform on properties, not methods (isaacs)
72+
73+
* assert: put info in err.message, not err.name (Ryan Doenges)
74+
75+
* dgram: fix no address bind() (Ben Noordhuis)
76+
77+
* handle_wrap: fix NULL pointer dereference (Ben Noordhuis)
78+
79+
* os: fix unlikely buffer overflow in os.type() (Ben Noordhuis)
80+
81+
* stream: Fix unshift() race conditions (isaacs)
82+
83+
84+
85+
4986
2013.04.11, Version 0.10.4 (Stable), 9712aa9f76073c30850b20a188b1ed12ffb74d17
5087

5188
* uv: Upgrade to 0.10.4

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#define NODE_MINOR_VERSION 11
2727
#define NODE_PATCH_VERSION 2
2828

29-
#define NODE_VERSION_IS_RELEASE 0
29+
#define NODE_VERSION_IS_RELEASE 1
3030

3131
#ifndef NODE_TAG
3232
# define NODE_TAG ""

0 commit comments

Comments
 (0)