From ba876d53539ed0427c52039012419cd9374c6f0d Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Thu, 29 Aug 2013 15:30:53 +0200 Subject: [PATCH] 2013.08.30, Version 0.11.11 (Unstable) Changes since version 0.11.10: * unix, windows: add thread-local storage API (Ben Noordhuis) * linux: don't turn on SO_REUSEPORT socket option (Ben Noordhuis) * darwin: fix 10.6 build error in fsevents.c (Ben Noordhuis) * windows: make uv_shutdown() for write-only pipes work (Bert Belder) * include: update uv_udp_open() / uv_udp_bind() docs (Ben Noordhuis) * unix: req queue must be empty when destroying loop (Ben Noordhuis) * unix: move loop functions from core.c to loop.c (Ben Noordhuis) * darwin: remove CoreFoundation dependency (Ben Noordhuis) * windows: make autotools build system work with mingw (Keno Fischer) * windows: fix mingw build (Alex Crichton) * windows: tweak Makefile.mingw for easier usage (Alex Crichton) * build: remove _GNU_SOURCE macro definition (Ben Noordhuis) --- .mailmap | 1 + AUTHORS | 1 + ChangeLog | 29 +++++++++++++++++++++++++++++ src/version.c | 2 +- 4 files changed, 32 insertions(+), 1 deletion(-) diff --git a/.mailmap b/.mailmap index 5dc4075e..2d5606f8 100644 --- a/.mailmap +++ b/.mailmap @@ -6,6 +6,7 @@ Brian White Brian White Frank Denis Isaac Z. Schlueter +Keno Fischer Robert Mustacchi Ryan Dahl Ryan Emery diff --git a/AUTHORS b/AUTHORS index 538714f9..f002a883 100644 --- a/AUTHORS +++ b/AUTHORS @@ -90,3 +90,4 @@ Wynn Wilkes Linus MÃ¥rtensson Andrei Sedoi Navaneeth Kedaram Nambiathan +Alex Crichton diff --git a/ChangeLog b/ChangeLog index 483654f5..ba73c149 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,32 @@ +2013.08.30, Version 0.11.11 (Unstable) + +Changes since version 0.11.10: + +* unix, windows: add thread-local storage API (Ben Noordhuis) + +* linux: don't turn on SO_REUSEPORT socket option (Ben Noordhuis) + +* darwin: fix 10.6 build error in fsevents.c (Ben Noordhuis) + +* windows: make uv_shutdown() for write-only pipes work (Bert Belder) + +* include: update uv_udp_open() / uv_udp_bind() docs (Ben Noordhuis) + +* unix: req queue must be empty when destroying loop (Ben Noordhuis) + +* unix: move loop functions from core.c to loop.c (Ben Noordhuis) + +* darwin: remove CoreFoundation dependency (Ben Noordhuis) + +* windows: make autotools build system work with mingw (Keno Fischer) + +* windows: fix mingw build (Alex Crichton) + +* windows: tweak Makefile.mingw for easier usage (Alex Crichton) + +* build: remove _GNU_SOURCE macro definition (Ben Noordhuis) + + 2013.08.25, Version 0.11.10 (Unstable), 742dadcb7154cc7bb89c0c228a223b767a36cf0d * windows: Re-implement uv_fs_stat. The st_ctime field now contains the change diff --git a/src/version.c b/src/version.c index 13499c2c..c15506de 100644 --- a/src/version.c +++ b/src/version.c @@ -32,7 +32,7 @@ #define UV_VERSION_MAJOR 0 #define UV_VERSION_MINOR 11 #define UV_VERSION_PATCH 11 -#define UV_VERSION_IS_RELEASE 0 +#define UV_VERSION_IS_RELEASE 1 #define UV_VERSION ((UV_VERSION_MAJOR << 16) | \