Skip to content

Commit f9b237f

Browse files
committed
2012.07.20, Version 0.9.0 (Unstable)
* punycode: update to v1.1.1 (Mathias Bynens) * c-ares: upgrade to 1.9.0 (Saúl Ibarra Corretgé) * dns: ignore rogue DNS servers reported by windows (Saúl Ibarra Corretgé) * unix: speed up uv_async_send() (Ben Noordhuis) * darwin: get cpu model correctly on mac (Xidorn Quan) * nextTick: Handle tick callbacks before any other I/O (isaacs) * Enable color customization of `util.inspect` (Pavel Lang) * tls: Speed and memory improvements (Fedor Indutny) * readline: Use one history item for reentered line (Vladimir Beloborodov) * Fix #3521 Make process.env more like a regular Object (isaacs)
1 parent e16d506 commit f9b237f

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -350,3 +350,4 @@ Ivan Torres <[email protected]>
350350
Philipp Hagemeister <[email protected]>
351351
George Shank <[email protected]>
352352
Mike Morearty <[email protected]>
353+
Pavel Lang <[email protected]>

ChangeLog

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
2012.07.19, Version 0.8.3 (Stable)
1+
2012.07.20, Version 0.9.0 (Unstable)
2+
3+
* punycode: update to v1.1.1 (Mathias Bynens)
4+
5+
* c-ares: upgrade to 1.9.0 (Saúl Ibarra Corretgé)
6+
7+
* dns: ignore rogue DNS servers reported by windows (Saúl Ibarra Corretgé)
8+
9+
* unix: speed up uv_async_send() (Ben Noordhuis)
10+
11+
* darwin: get cpu model correctly on mac (Xidorn Quan)
12+
13+
* nextTick: Handle tick callbacks before any other I/O (isaacs)
14+
15+
* Enable color customization of `util.inspect` (Pavel Lang)
16+
17+
* tls: Speed and memory improvements (Fedor Indutny)
18+
19+
* readline: Use one history item for reentered line (Vladimir Beloborodov)
20+
21+
* Fix #3521 Make process.env more like a regular Object (isaacs)
22+
23+
24+
2012.07.19, Version 0.8.3 (Stable), 60bf2d6cb33e4ce55604f73889ab840a9de8bdab
225

326
* V8: upgrade to 3.11.10.15
427

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 9
2727
#define NODE_PATCH_VERSION 0
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)