mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
2018.01.20, Version 1.19.1 (Stable)
Changes since version 1.19.0: * Revert "unix,tcp: avoid marking server sockets connected" (Ben Noordhuis) * Revert "unix,fs: fix for potential partial reads/writes" (Ben Noordhuis) * Revert "win: use RemoveDirectoryW() instead of _wmrmdir()" (Ben Noordhuis) * cygwin: fix compilation of ifaddrs impl (Brad King)
This commit is contained in:
parent
63de1ecad3
commit
8202d17511
13
ChangeLog
13
ChangeLog
@ -1,3 +1,16 @@
|
||||
2018.01.20, Version 1.19.1 (Stable)
|
||||
|
||||
Changes since version 1.19.0:
|
||||
|
||||
* Revert "unix,tcp: avoid marking server sockets connected" (Ben Noordhuis)
|
||||
|
||||
* Revert "unix,fs: fix for potential partial reads/writes" (Ben Noordhuis)
|
||||
|
||||
* Revert "win: use RemoveDirectoryW() instead of _wmrmdir()" (Ben Noordhuis)
|
||||
|
||||
* cygwin: fix compilation of ifaddrs impl (Brad King)
|
||||
|
||||
|
||||
2018.01.18, Version 1.19.0 (Stable), effbb7c9d29090b2e085a40867f8cdfa916a66df
|
||||
|
||||
Changes since version 1.18.0:
|
||||
|
@ -13,7 +13,7 @@
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([libuv], [1.19.0], [https://github.com/libuv/libuv/issues])
|
||||
AC_INIT([libuv], [1.19.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 19
|
||||
#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…
x
Reference in New Issue
Block a user