2018.04.19, Version 1.20.1 (Stable)
Changes since version 1.20.0: * doc,fs: improve documentation (Bob Burger) * win: return a floored double from uv_uptime() (Refael Ackermann) * doc: clarify platform specific pipe naming (Thomas Versteeg) * unix: fix uv_pipe_chmod() on macOS (zzzjim) * unix: work around glibc semaphore race condition (Anna Henningsen) * tcp,openbsd: disable Unix TCP check for IPV6_ONLY (Alex Arslan) * test,openbsd: use RETURN_SKIP in UDP IPv6 tests (Alex Arslan) * test,openbsd: fix multicast test (Alex Arslan) * Revert "win, fs: use FILE_WRITE_ATTRIBUTES when opening files" (cjihrig)
This commit is contained in:
parent
1954e9e3c1
commit
36ac2fc8ed
4
AUTHORS
4
AUTHORS
@ -332,3 +332,7 @@ Ryuichi KAWAMATA <ryuichi.kawamata@dena.jp>
|
||||
Joyee Cheung <joyeec9h3@gmail.com>
|
||||
Michael Kilburn <crusader.mike@gmail.com>
|
||||
Ruslan Bekenev <furyinbox@gmail.com>
|
||||
Bob Burger <rgburger@beckman.com>
|
||||
Thomas Versteeg <thomasversteeg@gmx.com>
|
||||
zzzjim <zzzjim@users.noreply.github.com>
|
||||
Alex Arslan <ararslan@comcast.net>
|
||||
|
||||
23
ChangeLog
23
ChangeLog
@ -1,3 +1,26 @@
|
||||
2018.04.19, Version 1.20.1 (Stable)
|
||||
|
||||
Changes since version 1.20.0:
|
||||
|
||||
* doc,fs: improve documentation (Bob Burger)
|
||||
|
||||
* win: return a floored double from uv_uptime() (Refael Ackermann)
|
||||
|
||||
* doc: clarify platform specific pipe naming (Thomas Versteeg)
|
||||
|
||||
* unix: fix uv_pipe_chmod() on macOS (zzzjim)
|
||||
|
||||
* unix: work around glibc semaphore race condition (Anna Henningsen)
|
||||
|
||||
* tcp,openbsd: disable Unix TCP check for IPV6_ONLY (Alex Arslan)
|
||||
|
||||
* test,openbsd: use RETURN_SKIP in UDP IPv6 tests (Alex Arslan)
|
||||
|
||||
* test,openbsd: fix multicast test (Alex Arslan)
|
||||
|
||||
* Revert "win, fs: use FILE_WRITE_ATTRIBUTES when opening files" (cjihrig)
|
||||
|
||||
|
||||
2018.04.03, Version 1.20.0 (Stable), 0012178ee2b04d9e4a2c66c27cf8891ad8325ceb
|
||||
|
||||
Changes since version 1.19.2:
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([libuv], [1.20.0], [https://github.com/libuv/libuv/issues])
|
||||
AC_INIT([libuv], [1.20.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])
|
||||
|
||||
@ -33,8 +33,8 @@
|
||||
#define UV_VERSION_MAJOR 1
|
||||
#define UV_VERSION_MINOR 20
|
||||
#define UV_VERSION_PATCH 1
|
||||
#define UV_VERSION_IS_RELEASE 0
|
||||
#define UV_VERSION_SUFFIX "dev"
|
||||
#define UV_VERSION_IS_RELEASE 1
|
||||
#define UV_VERSION_SUFFIX ""
|
||||
|
||||
#define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \
|
||||
(UV_VERSION_MINOR << 8) | \
|
||||
|
||||
Loading…
Reference in New Issue
Block a user