Skip to content

Commit 9e7bebe

Browse files
committedJan 18, 2013
2013.01.18, Version 0.9.7 (Unstable)
* V8: Upgrade to 3.15.11.7 * npm: Upgrade to 1.2.2 * punycode: Upgrade to 1.2.0 (Mathias Bynens) * repl: make built-in modules available by default (Felix Böhm) * windows: add support for '_Total' perf counters (Scott Blomquist) * cluster: make --prof work for workers (Ben Noordhuis) * child_process: do not keep list of sent sockets (Fedor Indutny) * tls: Follow RFC6125 more strictly (Fedor Indutny) * buffer: floating point read/write improvements (Trevor Norris) * TypedArrays: Improve dataview perf without endian param (Dean McNamee) * module: assert require() called with a non-empty string (Felix Böhm, James Campos) * stdio: Set readable/writable flags properly (isaacs) * stream: Properly handle large reads from push-streams (isaacs)
1 parent ee2fd79 commit 9e7bebe

File tree

3 files changed

+33
-2
lines changed

3 files changed

+33
-2
lines changed
 

‎AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -401,3 +401,5 @@ Luke Bayes <lbayes@patternpark.com>
401401
Nirk Niggler <nirk.niggler@gmail.com>
402402
James Hight <james@zavoo.com>
403403
Mike Harsch <mike@harschsystems.com>
404+
Alexandr Emelin <frvzmb@gmail.com>
405+
James Campos <james.r.campos@gmail.com>

‎ChangeLog

+30-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,33 @@
1-
2013.01.11, Version 0.9.6 (Unstable)
1+
2013.01.18, Version 0.9.7 (Unstable)
2+
3+
* V8: Upgrade to 3.15.11.7
4+
5+
* npm: Upgrade to 1.2.2
6+
7+
* punycode: Upgrade to 1.2.0 (Mathias Bynens)
8+
9+
* repl: make built-in modules available by default (Felix Böhm)
10+
11+
* windows: add support for '_Total' perf counters (Scott Blomquist)
12+
13+
* cluster: make --prof work for workers (Ben Noordhuis)
14+
15+
* child_process: do not keep list of sent sockets (Fedor Indutny)
16+
17+
* tls: Follow RFC6125 more strictly (Fedor Indutny)
18+
19+
* buffer: floating point read/write improvements (Trevor Norris)
20+
21+
* TypedArrays: Improve dataview perf without endian param (Dean McNamee)
22+
23+
* module: assert require() called with a non-empty string (Felix Böhm, James Campos)
24+
25+
* stdio: Set readable/writable flags properly (isaacs)
26+
27+
* stream: Properly handle large reads from push-streams (isaacs)
28+
29+
30+
2013.01.11, Version 0.9.6 (Unstable), 9313fdc71ca8335d5e3a391c103230ee6219b3e2
231

332
* V8: update to 3.15.11.5
433

‎src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# define NODE_TAG ""
3131
#endif
3232

33-
#define NODE_VERSION_IS_RELEASE 0
33+
#define NODE_VERSION_IS_RELEASE 1
3434

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

0 commit comments

Comments
 (0)
Please sign in to comment.