From a8c1136de2cabf25b143021488cbaab05834daa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Tue, 22 Sep 2015 22:12:07 +0200 Subject: [PATCH] 2015.09.23, Version 1.7.5 (Stable) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes since version 1.7.4: * unix: Support atomic compare & swap xlC on AIX (nmushell) * unix: Fix including uv-aix.h on AIX (nmushell) * unix: consolidate rwlock tryrdlock trywrlock errors (Saúl Ibarra Corretgé) * unix, win: consolidate mutex trylock errors (Saúl Ibarra Corretgé) * darwin: fix memory leak in uv_cpu_info (Jianghua Yang) * test: add tests for the uv_rwlock implementation (Bert Belder) * win: redo/fix the uv_rwlock APIs (Bert Belder) * win: don't fetch function pointers to SRWLock APIs (Bert Belder) --- AUTHORS | 1 + ChangeLog | 21 +++++++++++++++++++++ appveyor.yml | 2 +- configure.ac | 2 +- include/uv-version.h | 4 ++-- 5 files changed, 26 insertions(+), 4 deletions(-) diff --git a/AUTHORS b/AUTHORS index 7f297b87f..b2397e2df 100644 --- a/AUTHORS +++ b/AUTHORS @@ -224,3 +224,4 @@ Jianghua Yang Colin Snover Sakthipriyan Vairamani Eli Skeggs +nmushell diff --git a/ChangeLog b/ChangeLog index 02168676a..aae7ad6f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,24 @@ +2015.09.23, Version 1.7.5 (Stable) + +Changes since version 1.7.4: + +* unix: Support atomic compare & swap xlC on AIX (nmushell) + +* unix: Fix including uv-aix.h on AIX (nmushell) + +* unix: consolidate rwlock tryrdlock trywrlock errors (Saúl Ibarra Corretgé) + +* unix, win: consolidate mutex trylock errors (Saúl Ibarra Corretgé) + +* darwin: fix memory leak in uv_cpu_info (Jianghua Yang) + +* test: add tests for the uv_rwlock implementation (Bert Belder) + +* win: redo/fix the uv_rwlock APIs (Bert Belder) + +* win: don't fetch function pointers to SRWLock APIs (Bert Belder) + + 2015.09.12, Version 1.7.4 (Stable), a7ad4f52189d89cfcba35f78bfc5ff3b1f4105c4 Changes since version 1.7.3: diff --git a/appveyor.yml b/appveyor.yml index e730e1ca6..c9f55134e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: v1.7.4.build{build} +version: v1.7.5.build{build} install: - cinst -y nsis diff --git a/configure.ac b/configure.ac index 54704a28e..c55a11847 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.7.4], [https://github.com/libuv/libuv/issues]) +AC_INIT([libuv], [1.7.5], [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 c738bb230..e1f26601a 100644 --- a/include/uv-version.h +++ b/include/uv-version.h @@ -32,8 +32,8 @@ #define UV_VERSION_MAJOR 1 #define UV_VERSION_MINOR 7 -#define UV_VERSION_PATCH 4 -#define UV_VERSION_IS_RELEASE 0 +#define UV_VERSION_PATCH 5 +#define UV_VERSION_IS_RELEASE 1 #define UV_VERSION_SUFFIX "" #define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \