1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

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)
This commit is contained in:
Saúl Ibarra Corretgé 2015-09-22 22:12:07 +02:00
parent 98239224c3
commit a8c1136de2
5 changed files with 26 additions and 4 deletions

View File

@ -224,3 +224,4 @@ Jianghua Yang <jianghua.yjh@alibaba-inc.com>
Colin Snover <github.com@zetafleet.com>
Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Eli Skeggs <skeggse@gmail.com>
nmushell <nmushell@bloomberg.net>

View File

@ -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:

View File

@ -1,4 +1,4 @@
version: v1.7.4.build{build}
version: v1.7.5.build{build}
install:
- cinst -y nsis

View File

@ -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])

View File

@ -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) | \