mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
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)
This commit is contained in:
parent
83264701a7
commit
44f4b6bd82
4
AUTHORS
4
AUTHORS
@ -214,3 +214,7 @@ Roger A. Light <roger@atchoo.org>
|
||||
chenttuuvv <chenttuuvv@yahoo.com>
|
||||
Richard Lau <riclau@uk.ibm.com>
|
||||
ronkorving <rkorving@wizcorp.jp>
|
||||
Corbin Simpson <MostAwesomeDude@gmail.com>
|
||||
Zachary Hamm <zsh@imipolexg.org>
|
||||
Karl Skomski <karl@skomski.com>
|
||||
Jeremy Whitlock <jwhitlock@apache.org>
|
||||
|
41
ChangeLog
41
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:
|
||||
|
@ -1,4 +1,4 @@
|
||||
version: v1.7.0.build{build}
|
||||
version: v1.7.1.build{build}
|
||||
|
||||
install:
|
||||
- cinst -y nsis
|
||||
|
@ -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])
|
||||
|
@ -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 ""
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user