diff --git a/AUTHORS b/AUTHORS index c704527a..bb564ac7 100644 --- a/AUTHORS +++ b/AUTHORS @@ -332,3 +332,7 @@ Ryuichi KAWAMATA Joyee Cheung Michael Kilburn Ruslan Bekenev +Bob Burger +Thomas Versteeg +zzzjim +Alex Arslan diff --git a/ChangeLog b/ChangeLog index 3ae9d202..2af2302d 100644 --- a/ChangeLog +++ b/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: diff --git a/configure.ac b/configure.ac index ee8571ea..28fda9d3 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.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]) diff --git a/include/uv-version.h b/include/uv-version.h index 5978abde..de8f3f33 100644 --- a/include/uv-version.h +++ b/include/uv-version.h @@ -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) | \