Skip to content

Commit f160a45

Browse files
committed
2012.04.09 Version 0.6.15 (stable)
* Update npm to 1.1.16 * Show licenses in binary installers. * unix: add uv_fs_read64, uv_fs_write64 and uv_fs_ftruncate64 (Ben Noordhuis) * add 64bit offset fs functions (Igor Zinkovsky) * windows: don't report ENOTSOCK when attempting to bind an udp handle twice (Bert Belder) * windows: backport pipe-connect-to-file fixes from master (Bert Belder) * windows: never call fs event callbacks after closing the watcher (Bert Belder) * fs.readFile: don't make the callback before the fd is closed (Bert Belder) * windows: use 64bit offsets for uv_fs apis (Igor Zinkovsky) * Fix nodejs#2061: segmentation fault on OS X due to stat size mismatch (Ben Noordhuis)
1 parent c75f71d commit f160a45

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

ChangeLog

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
2012.03.22 Version 0.6.14 (stable)
1+
2012.04.09 Version 0.6.15 (stable)
2+
3+
* Update npm to 1.1.16
4+
5+
* Show licenses in binary installers.
6+
7+
* unix: add uv_fs_read64, uv_fs_write64 and uv_fs_ftruncate64 (Ben Noordhuis)
8+
9+
* add 64bit offset fs functions (Igor Zinkovsky)
10+
11+
* windows: don't report ENOTSOCK when attempting to bind an udp handle twice (Bert Belder)
12+
13+
* windows: backport pipe-connect-to-file fixes from master (Bert Belder)
14+
15+
* windows: never call fs event callbacks after closing the watcher (Bert Belder)
16+
17+
* fs.readFile: don't make the callback before the fd is closed (Bert Belder)
18+
19+
* windows: use 64bit offsets for uv_fs apis (Igor Zinkovsky)
20+
21+
* Fix #2061: segmentation fault on OS X due to stat size mismatch (Ben Noordhuis)
22+
23+
24+
2012.03.22 Version 0.6.14 (stable), e513ffef7549a56a5af728e1f0c2c0c8f290518a
225

326
* net: don't crash when queued write fails (Igor Zinkovsky)
427

doc/community/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ <h2 class="localized">Localized Sites</h2>
146146
<br>
147147
<a href="http://nodehispano.com">Node Hispano</a> Spanish language community
148148
<br>
149-
<a href="http://nodejskr.org">October Sky JS</a> Korean Node.js community
149+
<a href="http://nodejskr.org">OctoberSkyJs</a> Korea Node.js community
150150
</p>
151151

152152
</div>

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 15
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)