From 7ebb26225f2eaae6db22f4ef34ce76fa16ff89ec Mon Sep 17 00:00:00 2001 From: cjihrig Date: Thu, 16 Aug 2018 22:05:34 -0400 Subject: [PATCH] 2018.08.18, Version 1.23.0 (Stable) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changes since version 1.22.0: * win,pipe: restore compatibility with the old IPC framing protocol (Bert Belder) * fs: add uv_open_osfhandle (Bartosz Sosnowski) * doc: update Visual C++ Build Tools URL (Michał Kozakiewicz) * unix: loop starvation on successful write complete (jBarz) * win: add uv__getnameinfo_work() error handling (A. Hauptmann) * win: return UV_ENOMEM from uv_loop_init() (cjihrig) * unix,win: add uv_os_{get,set}priority() (cjihrig) * test: fix warning in test-tcp-open (Santiago Gimeno) --- AUTHORS | 1 + ChangeLog | 22 ++++++++++++++++++++++ configure.ac | 2 +- include/uv/version.h | 8 ++++---- 4 files changed, 28 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index ef3d5e18..0ba7c067 100644 --- a/AUTHORS +++ b/AUTHORS @@ -345,3 +345,4 @@ Peter Johnson Paolo Greppi Shelley Vohr Ujjwal Sharma +Michał Kozakiewicz diff --git a/ChangeLog b/ChangeLog index acf42e01..be538b02 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,25 @@ +2018.08.18, Version 1.23.0 (Stable) + +Changes since version 1.22.0: + +* win,pipe: restore compatibility with the old IPC framing protocol (Bert + Belder) + +* fs: add uv_open_osfhandle (Bartosz Sosnowski) + +* doc: update Visual C++ Build Tools URL (Michał Kozakiewicz) + +* unix: loop starvation on successful write complete (jBarz) + +* win: add uv__getnameinfo_work() error handling (A. Hauptmann) + +* win: return UV_ENOMEM from uv_loop_init() (cjihrig) + +* unix,win: add uv_os_{get,set}priority() (cjihrig) + +* test: fix warning in test-tcp-open (Santiago Gimeno) + + 2018.07.11, Version 1.22.0 (Stable), 8568f78a777d79d35eb7d6994617267b9fb33967 Changes since version 1.21.0: diff --git a/configure.ac b/configure.ac index aa6e6d16..6e084fd0 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.22.0], [https://github.com/libuv/libuv/issues]) +AC_INIT([libuv], [1.23.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 6944e38c..30e1d5a6 100644 --- a/include/uv/version.h +++ b/include/uv/version.h @@ -31,10 +31,10 @@ */ #define UV_VERSION_MAJOR 1 -#define UV_VERSION_MINOR 22 -#define UV_VERSION_PATCH 1 -#define UV_VERSION_IS_RELEASE 0 -#define UV_VERSION_SUFFIX "dev" +#define UV_VERSION_MINOR 23 +#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) | \