From 0a6771cee4c15184c924bfe9d397bdd0c3b206ba Mon Sep 17 00:00:00 2001 From: cjihrig Date: Fri, 9 Aug 2019 10:57:12 -0400 Subject: [PATCH] 2019.08.10, Version 1.31.0 (Stable) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes since version 1.30.1: * win,fs: don't modify global file translation mode (Javier Blazquez) * win: fix uv_os_tmpdir when env var is 260 chars (Mustafa M) * win: prevent tty event explosion machine hang (Javier Blazquez) * win: add UV_FS_O_FILEMAP (João Reis) * win, fs: mkdir return UV_EINVAL for invalid names (Bartosz Sosnowski) * github: add root warning to template (cjihrig) * win: misc fs cleanup (cjihrig) * unix,win: add uv_fs_statfs() (cjihrig) * test: avoid AF_LOCAL (Carlo Marcelo Arenas Belón) * unix,win: add ability to retrieve all env variables (Saúl Ibarra Corretgé) * Revert "darwin: speed up uv_set_process_title()" (Ben Noordhuis) * doc: add %p to valgrind log-file arg (Zach Bjornson) * doc: fix typo in basics.rst (Nan Xiao) * ibmi: support Makefile build for IBM i (Xu Meng) * OpenBSD: only get active CPU core count (Ben Davies) * test: fix gcc 8 warnings for tests (Nhan Khong) * ibmi: use correct header files (Xu Meng) * unix: clear UV_HANDLE_READING flag before callback (zyxwvu Shi) * unix: fix unused-function warning on BSD (Nhan Khong) * test: fix test runner on MinGW (Crunkle) * win: remove try-except outside MSVC (Crunkle) * win: fix uv_spawn() ENOMEM on empty env (Ben Noordhuis) --- .mailmap | 1 + AUTHORS | 7 +++++++ ChangeLog | 49 ++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 2 +- include/uv/version.h | 8 ++++---- 5 files changed, 62 insertions(+), 5 deletions(-) diff --git a/.mailmap b/.mailmap index 3d95997e..87d63bed 100644 --- a/.mailmap +++ b/.mailmap @@ -38,6 +38,7 @@ Sam Roberts San-Tai Hsu Santiago Gimeno Saúl Ibarra Corretgé +Saúl Ibarra Corretgé Shigeki Ohtsu Timothy J. Fontaine Yasuhiro Matsumoto diff --git a/AUTHORS b/AUTHORS index 4db18540..5d5866d3 100644 --- a/AUTHORS +++ b/AUTHORS @@ -389,3 +389,10 @@ Jenil Christo Evgeny Ermakov gengjiawen Leo Chung +Javier Blazquez +Mustafa M +Zach Bjornson +Nan Xiao +Ben Davies +Nhan Khong +Crunkle diff --git a/ChangeLog b/ChangeLog index a6e2786b..99ec7163 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,52 @@ +2019.08.10, Version 1.31.0 (Stable) + +Changes since version 1.30.1: + +* win,fs: don't modify global file translation mode (Javier Blazquez) + +* win: fix uv_os_tmpdir when env var is 260 chars (Mustafa M) + +* win: prevent tty event explosion machine hang (Javier Blazquez) + +* win: add UV_FS_O_FILEMAP (João Reis) + +* win, fs: mkdir return UV_EINVAL for invalid names (Bartosz Sosnowski) + +* github: add root warning to template (cjihrig) + +* win: misc fs cleanup (cjihrig) + +* unix,win: add uv_fs_statfs() (cjihrig) + +* test: avoid AF_LOCAL (Carlo Marcelo Arenas Belón) + +* unix,win: add ability to retrieve all env variables (Saúl Ibarra Corretgé) + +* Revert "darwin: speed up uv_set_process_title()" (Ben Noordhuis) + +* doc: add %p to valgrind log-file arg (Zach Bjornson) + +* doc: fix typo in basics.rst (Nan Xiao) + +* ibmi: support Makefile build for IBM i (Xu Meng) + +* OpenBSD: only get active CPU core count (Ben Davies) + +* test: fix gcc 8 warnings for tests (Nhan Khong) + +* ibmi: use correct header files (Xu Meng) + +* unix: clear UV_HANDLE_READING flag before callback (zyxwvu Shi) + +* unix: fix unused-function warning on BSD (Nhan Khong) + +* test: fix test runner on MinGW (Crunkle) + +* win: remove try-except outside MSVC (Crunkle) + +* win: fix uv_spawn() ENOMEM on empty env (Ben Noordhuis) + + 2019.07.03, Version 1.30.1 (Stable), 1551969c84c2f546a429dac169c7fdac3e38115e Changes since version 1.30.0: diff --git a/configure.ac b/configure.ac index c4c0c80a..c5e29fef 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.30.1], [https://github.com/libuv/libuv/issues]) +AC_INIT([libuv], [1.31.0], [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 bee84c2c..37a6a445 100644 --- a/include/uv/version.h +++ b/include/uv/version.h @@ -31,10 +31,10 @@ */ #define UV_VERSION_MAJOR 1 -#define UV_VERSION_MINOR 30 -#define UV_VERSION_PATCH 2 -#define UV_VERSION_IS_RELEASE 0 -#define UV_VERSION_SUFFIX "dev" +#define UV_VERSION_MINOR 31 +#define UV_VERSION_PATCH 0 +#define UV_VERSION_IS_RELEASE 1 +#define UV_VERSION_SUFFIX "" #define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \ (UV_VERSION_MINOR << 8) | \