Skip to content

Commit e513ffe

Browse files
committed
2012.03.22 Version 0.6.14 (stable)
* net: don't crash when queued write fails (Igor Zinkovsky) * sunos: fix EMFILE on process.memoryUsage() (Bryan Cantrill) * crypto: fix compile-time error with openssl 0.9.7e (Ben Noordhuis) * unix: ignore ECONNABORTED errors from accept() (Ben Noordhuis) * Add UV_ENOSPC and mappings to it (Bert Belder) * http-parser: Fix response body is not read (koichik) * Upgrade npm to 1.1.12 - upgrade node-gyp to 0.3.7 - work around AV-locked directories on Windows - Fix isaacs/npm#2293 Don't try to 'uninstall' / - Exclude symbolic links from packages. - Fix isaacs/npm#2275 Spurious 'unresolvable cycle' error. - Exclude/include dot files as if they were normal files
1 parent d497bf8 commit e513ffe

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

AUTHORS

+5
Original file line numberDiff line numberDiff line change
@@ -267,3 +267,8 @@ Philip Tellis <[email protected]>
267267
Christopher Jeffrey <[email protected]>
268268
Seth Fitzsimmons <[email protected]>
269269
Einar Otto Stangvik <[email protected]>
270+
Paul Vorbach <[email protected]>
271+
272+
Joshua Holbrook <[email protected]>
273+
274+
Bryan Cantrill <[email protected]>

ChangeLog

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
2012.03.15 Version 0.6.13 (stable)
1+
2012.03.22 Version 0.6.14 (stable)
2+
3+
* net: don't crash when queued write fails (Igor Zinkovsky)
4+
5+
* sunos: fix EMFILE on process.memoryUsage() (Bryan Cantrill)
6+
7+
* crypto: fix compile-time error with openssl 0.9.7e (Ben Noordhuis)
8+
9+
* unix: ignore ECONNABORTED errors from accept() (Ben Noordhuis)
10+
11+
* Add UV_ENOSPC and mappings to it (Bert Belder)
12+
13+
* http-parser: Fix response body is not read (koichik)
14+
15+
* Upgrade npm to 1.1.12
16+
- upgrade node-gyp to 0.3.7
17+
- work around AV-locked directories on Windows
18+
- Fix isaacs/npm#2293 Don't try to 'uninstall' /
19+
- Exclude symbolic links from packages.
20+
- Fix isaacs/npm#2275 Spurious 'unresolvable cycle' error.
21+
- Exclude/include dot files as if they were normal files
22+
23+
24+
2012.03.15 Version 0.6.13 (stable), 9f7f86b534f8556290eb8cad915984ff4ca54996
225

326
* Windows: Many libuv test fixes (Bert Belder)
427

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 6
3131
#define NODE_PATCH_VERSION 14
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)