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)
This commit is contained in:
parent
589736303f
commit
7ebb26225f
1
AUTHORS
1
AUTHORS
@ -345,3 +345,4 @@ Peter Johnson <johnson.peter@gmail.com>
|
||||
Paolo Greppi <paolo.greppi@libpf.com>
|
||||
Shelley Vohr <shelley.vohr@gmail.com>
|
||||
Ujjwal Sharma <usharma1998@gmail.com>
|
||||
Michał Kozakiewicz <michalkozakiewicz3@gmail.com>
|
||||
|
||||
22
ChangeLog
22
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:
|
||||
|
||||
@ -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])
|
||||
|
||||
@ -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) | \
|
||||
|
||||
Loading…
Reference in New Issue
Block a user