Skip to content

Commit fdf91af

Browse files
committedNov 26, 2012
2012.11.26, Version 0.8.15 (Stable)
* npm: Upgrade to 1.1.66 (isaacs) * linux: use /proc/cpuinfo for CPU frequency (Ben Noordhuis) * windows: map WSAESHUTDOWN to UV_EPIPE (Ben Noordhuis) * windows: map ERROR_GEN_FAILURE to UV_EIO (Bert Belder) * unix: do not set environ unless one is provided (Charlie McConnell) * domains: don't crash if domain is set to null (Bert Belder) * windows: fix the x64 debug build (Bert Belder) * net, tls: fix connect() resource leak (Ben Noordhuis)
1 parent 121ed91 commit fdf91af

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed
 

‎AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -368,3 +368,5 @@ Willi Eggeling <email@wje-online.de>
368368
Andrew Paprocki <andrew@ishiboo.com>
369369
Max Ogden <max@maxogden.com>
370370
Olivier Lalonde <olalonde@gmail.com>
371+
Francois Marier <francois@mozilla.com>
372+
Trevor Norris <trev.norris@gmail.com>

‎ChangeLog

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
1-
2012.10.25, Version 0.8.14 (Stable)
1+
2012.11.26, Version 0.8.15 (Stable)
2+
3+
* npm: Upgrade to 1.1.66 (isaacs)
4+
5+
* linux: use /proc/cpuinfo for CPU frequency (Ben Noordhuis)
6+
7+
* windows: map WSAESHUTDOWN to UV_EPIPE (Ben Noordhuis)
8+
9+
* windows: map ERROR_GEN_FAILURE to UV_EIO (Bert Belder)
10+
11+
* unix: do not set environ unless one is provided (Charlie McConnell)
12+
13+
* domains: don't crash if domain is set to null (Bert Belder)
14+
15+
* windows: fix the x64 debug build (Bert Belder)
16+
17+
* net, tls: fix connect() resource leak (Ben Noordhuis)
18+
19+
20+
2012.10.25, Version 0.8.14 (Stable), b00527fcf05c3d9f/b5d5d790f9472906a59fe218
221

322
* events: Don't clobber pre-existing _events obj in EE ctor (isaacs)
423

‎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 8
2727
#define NODE_PATCH_VERSION 15
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)