From 44f4b6bd82d8ae4583ccc4768a83af778ef69f85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Wed, 19 Aug 2015 22:45:07 +0200 Subject: [PATCH] 2015.08.20, Version 1.7.1 (Stable) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes since version 1.7.0: * doc: document the procedure for verifying releases (Saúl Ibarra Corretgé) * doc: add note about Windows binaries to the README (Saúl Ibarra Corretgé) * doc: use long GPG IDs in MAINTAINERS.md (Saúl Ibarra Corretgé) * Revert "stream: squelch ECONNRESET error if already closed" (Saúl Ibarra Corretgé) * doc: clarify uv_read_stop() is idempotent (Corbin Simpson) * unix: OpenBSD's setsockopt needs an unsigned char for multicast (Zachary Hamm) * test: Fix two memory leaks (Karl Skomski) * unix,win: return EINVAL on nullptr args in uv_fs_{read,write} (Karl Skomski) * win: set accepted TCP sockets as non-inheritable (Saúl Ibarra Corretgé) * unix: remove superfluous parentheses in fs macros (Ben Noordhuis) * unix: don't copy arguments for sync fs requests (Ben Noordhuis) * test: plug small memory leak in unix test runner (Ben Noordhuis) * unix,windows: allow NULL loop for sync fs requests (Ben Noordhuis) * unix,windows: don't assert on unknown error code (Ben Noordhuis) * stream: retry write on EPROTOTYPE on OSX (Brian White) * common: fix use of snprintf on Windows (Saúl Ibarra Corretgé) * tests: refactored fs watch_dir tests for stability (Jeremy Whitlock) --- AUTHORS | 4 ++++ ChangeLog | 41 +++++++++++++++++++++++++++++++++++++++++ appveyor.yml | 2 +- configure.ac | 2 +- include/uv-version.h | 2 +- 5 files changed, 48 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index 5982d3c5..0b640e22 100644 --- a/AUTHORS +++ b/AUTHORS @@ -214,3 +214,7 @@ Roger A. Light chenttuuvv Richard Lau ronkorving +Corbin Simpson +Zachary Hamm +Karl Skomski +Jeremy Whitlock diff --git a/ChangeLog b/ChangeLog index c575899e..f732786b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,44 @@ +2015.08.20, Version 1.7.1 (Stable) + +Changes since version 1.7.0: + +* doc: document the procedure for verifying releases (Saúl Ibarra Corretgé) + +* doc: add note about Windows binaries to the README (Saúl Ibarra Corretgé) + +* doc: use long GPG IDs in MAINTAINERS.md (Saúl Ibarra Corretgé) + +* Revert "stream: squelch ECONNRESET error if already closed" (Saúl Ibarra + Corretgé) + +* doc: clarify uv_read_stop() is idempotent (Corbin Simpson) + +* unix: OpenBSD's setsockopt needs an unsigned char for multicast (Zachary + Hamm) + +* test: Fix two memory leaks (Karl Skomski) + +* unix,win: return EINVAL on nullptr args in uv_fs_{read,write} (Karl Skomski) + +* win: set accepted TCP sockets as non-inheritable (Saúl Ibarra Corretgé) + +* unix: remove superfluous parentheses in fs macros (Ben Noordhuis) + +* unix: don't copy arguments for sync fs requests (Ben Noordhuis) + +* test: plug small memory leak in unix test runner (Ben Noordhuis) + +* unix,windows: allow NULL loop for sync fs requests (Ben Noordhuis) + +* unix,windows: don't assert on unknown error code (Ben Noordhuis) + +* stream: retry write on EPROTOTYPE on OSX (Brian White) + +* common: fix use of snprintf on Windows (Saúl Ibarra Corretgé) + +* tests: refactored fs watch_dir tests for stability (Jeremy Whitlock) + + 2015.08.06, Version 1.7.0 (Stable), 415a865d6365ba58d02b92b89d46ba5d7744ec8b Changes since version 1.6.1: diff --git a/appveyor.yml b/appveyor.yml index 19945dde..e4672bee 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: v1.7.0.build{build} +version: v1.7.1.build{build} install: - cinst -y nsis diff --git a/configure.ac b/configure.ac index 35769280..dfda0b19 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.0], [https://github.com/libuv/libuv/issues]) +AC_INIT([libuv], [1.7.1], [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 e64e166e..a210c16b 100644 --- a/include/uv-version.h +++ b/include/uv-version.h @@ -32,7 +32,7 @@ #define UV_VERSION_MAJOR 1 #define UV_VERSION_MINOR 7 -#define UV_VERSION_PATCH 0 +#define UV_VERSION_PATCH 1 #define UV_VERSION_IS_RELEASE 1 #define UV_VERSION_SUFFIX ""