From 33959f7524090b8d2c6c41e2400ca77e31755059 Mon Sep 17 00:00:00 2001 From: Timothy J Fontaine Date: Tue, 12 Nov 2013 10:54:25 -0800 Subject: [PATCH] 2013.11.13, Version 0.10.19 (Stable) Changes since version 0.10.18: * darwin: avoid calling GetCurrentProcess (Fedor Indutny) * unix: update events from pevents between polls (Fedor Indutny) * fsevents: support japaneese characters in path (Chris Bank) * linux: don't turn on SO_REUSEPORT socket option (Ben Noordhuis) * build: fix windows smp build with gyp (Geert Jansen) * linux: handle EPOLLHUP without EPOLLIN/EPOLLOUT (Ben Noordhuis) * unix: fix reopened fd bug (Fedor Indutny) * core: fix fake watcher list and count preservation (Fedor Indutny) --- AUTHORS | 2 ++ ChangeLog | 21 +++++++++++++++++++++ src/version.c | 2 +- 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 119773a5..32631467 100644 --- a/AUTHORS +++ b/AUTHORS @@ -85,3 +85,5 @@ Miroslav Bajtoš Elliot Saba Wynn Wilkes Andrei Sedoi +Chris Bank +Geert Jansen diff --git a/ChangeLog b/ChangeLog index 0cb89eaa..e5d1a560 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,24 @@ +2013.11.13, Version 0.10.19 (Stable) + +Changes since version 0.10.18: + +* darwin: avoid calling GetCurrentProcess (Fedor Indutny) + +* unix: update events from pevents between polls (Fedor Indutny) + +* fsevents: support japaneese characters in path (Chris Bank) + +* linux: don't turn on SO_REUSEPORT socket option (Ben Noordhuis) + +* build: fix windows smp build with gyp (Geert Jansen) + +* linux: handle EPOLLHUP without EPOLLIN/EPOLLOUT (Ben Noordhuis) + +* unix: fix reopened fd bug (Fedor Indutny) + +* core: fix fake watcher list and count preservation (Fedor Indutny) + + 2013.10.19, Version 0.10.18 (Stable), 9ec52963b585e822e87bdc5de28d6143aff0d2e5 Changes since version 0.10.17: diff --git a/src/version.c b/src/version.c index 742f5a1e..8048efd5 100644 --- a/src/version.c +++ b/src/version.c @@ -35,7 +35,7 @@ #define UV_VERSION_MAJOR 0 #define UV_VERSION_MINOR 10 #define UV_VERSION_PATCH 19 -#define UV_VERSION_IS_RELEASE 0 +#define UV_VERSION_IS_RELEASE 1 #define UV_VERSION ((UV_VERSION_MAJOR << 16) | \