Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit debf552

Browse files
committedJun 6, 2012
2012.06.06 Version 0.6.19 (stable)
* npm: upgrade to 1.1.24 * fs: no end emit after createReadStream.pause() (Andreas Madsen) * vm: cleanup module memory leakage (Marcel Laverdet) * unix: fix loop starvation under high network load (Ben Noordhuis) * unix: remove abort() in ev_unref() (Ben Noordhuis) * windows/tty: never report error after forcibly aborting line-buffered read (Bert Belder) * windows: skip GetFileAttributes call when opening a file (Bert Belder)
1 parent e5d3ea7 commit debf552

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed
 

‎AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -277,3 +277,4 @@ Dane Springmeyer <dane@dbsgeo.com>
277277
Sambasiva Suda <sambasivarao@gmail.com>
278278
Vincent Voyer <v@fasterize.com>
279279
ANDO Takahiro <takahiro.ando@gmail.com>
280+
Erwin van der Koogh <github@koogh.com>

‎ChangeLog

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
1-
2012.05.15 Version 0.6.18 (stable)
1+
2012.06.06 Version 0.6.19 (stable)
2+
3+
* npm: upgrade to 1.1.24
4+
5+
* fs: no end emit after createReadStream.pause() (Andreas Madsen)
6+
7+
* vm: cleanup module memory leakage (Marcel Laverdet)
8+
9+
* unix: fix loop starvation under high network load (Ben Noordhuis)
10+
11+
* unix: remove abort() in ev_unref() (Ben Noordhuis)
12+
13+
* windows/tty: never report error after forcibly aborting line-buffered read (Bert Belder)
14+
15+
* windows: skip GetFileAttributes call when opening a file (Bert Belder)
16+
17+
18+
2012.05.15 Version 0.6.18 (stable), 4bc1d395de6abed2cf1e4d0b7b3a1480a21c368f
219

320
* windows: skip GetFileAttributes call when opening a file (Bert Belder)
421

‎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 19
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)
Failed to load comments.