From adfccad76456061dfcf79b8df8e7dbfee51791d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Wed, 3 Jun 2015 21:32:57 +0200 Subject: [PATCH] 2015.06.04, Version 1.6.0 (Stable) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes since version 1.5.0: * aix: fix setsockopt for multicast options (Michael) * unix: don't block for io if any io handle is primed (Saúl Ibarra Corretgé) * windows: MSVC 2015 has snprintf() (Rui Abreu Ferreira) * windows: Add VS2015 support to vcbuild.bat (Jason Williams) * doc: fix typo in tcp.rst (Igor Soarez) * linux: work around epoll bug in kernels < 2.6.37 (Ben Noordhuis) * unix,win: add uv_os_homedir() (cjihrig) * stream: fix `select()` race condition (Fedor Indutny) * unix: prevent infinite loop in uv__run_pending (Saúl Ibarra Corretgé) * unix: make sure UDP send callbacks are asynchronous (Saúl Ibarra Corretgé) * test: fix `platform_output` netmask printing. (Andrew Paprocki) * aix: add ahafs autoconf detection and README notes (Andrew Paprocki) * core: add ability to customize memory allocator (Saúl Ibarra Corretgé) --- .mailmap | 1 + AUTHORS | 3 +++ ChangeLog | 31 +++++++++++++++++++++++++++++++ configure.ac | 2 +- include/uv-version.h | 2 +- 5 files changed, 37 insertions(+), 2 deletions(-) diff --git a/.mailmap b/.mailmap index 0a152ba8..7660bd0e 100644 --- a/.mailmap +++ b/.mailmap @@ -18,6 +18,7 @@ Leith Bade Leonard Hecker Maciej Małecki Marc Schlaich +Michael Rasmus Christian Pedersen Rasmus Christian Pedersen Robert Mustacchi diff --git a/AUTHORS b/AUTHORS index a0e3dd46..bbb8f4d8 100644 --- a/AUTHORS +++ b/AUTHORS @@ -197,3 +197,6 @@ Daryl Haresign Rui Abreu Ferreira João Reis farblue68 +Jason Williams +Igor Soarez +Miodrag Milanovic diff --git a/ChangeLog b/ChangeLog index e5c79808..1a6508a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,34 @@ +2015.06.04, Version 1.6.0 (Stable) + +Changes since version 1.5.0: + +* aix: fix setsockopt for multicast options (Michael) + +* unix: don't block for io if any io handle is primed (Saúl Ibarra Corretgé) + +* windows: MSVC 2015 has snprintf() (Rui Abreu Ferreira) + +* windows: Add VS2015 support to vcbuild.bat (Jason Williams) + +* doc: fix typo in tcp.rst (Igor Soarez) + +* linux: work around epoll bug in kernels < 2.6.37 (Ben Noordhuis) + +* unix,win: add uv_os_homedir() (cjihrig) + +* stream: fix `select()` race condition (Fedor Indutny) + +* unix: prevent infinite loop in uv__run_pending (Saúl Ibarra Corretgé) + +* unix: make sure UDP send callbacks are asynchronous (Saúl Ibarra Corretgé) + +* test: fix `platform_output` netmask printing. (Andrew Paprocki) + +* aix: add ahafs autoconf detection and README notes (Andrew Paprocki) + +* core: add ability to customize memory allocator (Saúl Ibarra Corretgé) + + 2015.05.07, Version 1.5.0 (Stable), 4e77f74c7b95b639b3397095db1bc5bcc016c203 Changes since version 1.4.2: diff --git a/configure.ac b/configure.ac index 499555c9..3fa01a25 100644 --- a/configure.ac +++ b/configure.ac @@ -13,7 +13,7 @@ # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. AC_PREREQ(2.57) -AC_INIT([libuv], [1.5.0], [https://github.com/libuv/libuv/issues]) +AC_INIT([libuv], [1.6.0], [https://github.com/libuv/libuv/issues]) AC_CONFIG_MACRO_DIR([m4]) m4_include([m4/libuv-extra-automake-flags.m4]) m4_include([m4/as_case.m4]) diff --git a/include/uv-version.h b/include/uv-version.h index 0b4e6d78..2e2311ec 100644 --- a/include/uv-version.h +++ b/include/uv-version.h @@ -31,7 +31,7 @@ */ #define UV_VERSION_MAJOR 1 -#define UV_VERSION_MINOR 5 +#define UV_VERSION_MINOR 6 #define UV_VERSION_PATCH 0 #define UV_VERSION_IS_RELEASE 1 #define UV_VERSION_SUFFIX ""