2018.12.17, Version 1.24.1 (Stable)
Changes since version 1.24.0: * test: fix platform_output test on cygwin (damon-kwok) * gitignore: ignore build/ directory (Damon Kwok) * unix: zero epoll_event before use (Ashe Connor) * darwin: use runtime check for file cloning (Ben Noordhuis) * doc: replace deprecated build command on macOS (Rick) * warnings: fix code that emits compiler warnings (Jameson Nash) * doc: clarify expected memory management strategy (Ivan Krylov) * test: add uv_inet_ntop(AF_INET) coverage (Ben Noordhuis) * unix: harden string copying, introduce strscpy() (Ben Noordhuis) * linux: get rid of strncpy() call (Ben Noordhuis) * aix: get rid of strcat() calls (Ben Noordhuis) * aix: fix data race in uv_fs_event_start() (Ben Noordhuis) * win: fs: fix `FILE_FLAG_NO_BUFFERING` for writes (Joran Dirk Greef) * build: don't link against -lpthread on Android (Michael Meier)
This commit is contained in:
parent
67e771fe53
commit
274f2bd3b7
6
AUTHORS
6
AUTHORS
@ -356,3 +356,9 @@ hitesh <sainihitesh.scientist@gmail.com>
|
|||||||
Svante Signell <svante.signell@gmail.com>
|
Svante Signell <svante.signell@gmail.com>
|
||||||
Samuel Thibault <sthibault@debian.org>
|
Samuel Thibault <sthibault@debian.org>
|
||||||
Jeremy Studer <studerj1.mail@gmail.com>
|
Jeremy Studer <studerj1.mail@gmail.com>
|
||||||
|
damon-kwok <563066990@qq.com>
|
||||||
|
Damon Kwok <MedusaIDE@outlook.com>
|
||||||
|
Ashe Connor <ashe@kivikakk.ee>
|
||||||
|
Rick <lcw0622@163.com>
|
||||||
|
Ivan Krylov <krylov.r00t@gmail.com>
|
||||||
|
Michael Meier <michael.meier@leica-geosystems.com>
|
||||||
|
|||||||
33
ChangeLog
33
ChangeLog
@ -1,3 +1,36 @@
|
|||||||
|
2018.12.17, Version 1.24.1 (Stable)
|
||||||
|
|
||||||
|
Changes since version 1.24.0:
|
||||||
|
|
||||||
|
* test: fix platform_output test on cygwin (damon-kwok)
|
||||||
|
|
||||||
|
* gitignore: ignore build/ directory (Damon Kwok)
|
||||||
|
|
||||||
|
* unix: zero epoll_event before use (Ashe Connor)
|
||||||
|
|
||||||
|
* darwin: use runtime check for file cloning (Ben Noordhuis)
|
||||||
|
|
||||||
|
* doc: replace deprecated build command on macOS (Rick)
|
||||||
|
|
||||||
|
* warnings: fix code that emits compiler warnings (Jameson Nash)
|
||||||
|
|
||||||
|
* doc: clarify expected memory management strategy (Ivan Krylov)
|
||||||
|
|
||||||
|
* test: add uv_inet_ntop(AF_INET) coverage (Ben Noordhuis)
|
||||||
|
|
||||||
|
* unix: harden string copying, introduce strscpy() (Ben Noordhuis)
|
||||||
|
|
||||||
|
* linux: get rid of strncpy() call (Ben Noordhuis)
|
||||||
|
|
||||||
|
* aix: get rid of strcat() calls (Ben Noordhuis)
|
||||||
|
|
||||||
|
* aix: fix data race in uv_fs_event_start() (Ben Noordhuis)
|
||||||
|
|
||||||
|
* win: fs: fix `FILE_FLAG_NO_BUFFERING` for writes (Joran Dirk Greef)
|
||||||
|
|
||||||
|
* build: don't link against -lpthread on Android (Michael Meier)
|
||||||
|
|
||||||
|
|
||||||
2018.11.14, Version 1.24.0 (Stable), 2d427ee0083d1baf995df4ebf79a3f8890e9a3e1
|
2018.11.14, Version 1.24.0 (Stable), 2d427ee0083d1baf995df4ebf79a3f8890e9a3e1
|
||||||
|
|
||||||
Changes since version 1.23.2:
|
Changes since version 1.23.2:
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
AC_PREREQ(2.57)
|
AC_PREREQ(2.57)
|
||||||
AC_INIT([libuv], [1.24.0], [https://github.com/libuv/libuv/issues])
|
AC_INIT([libuv], [1.24.1], [https://github.com/libuv/libuv/issues])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
m4_include([m4/libuv-extra-automake-flags.m4])
|
m4_include([m4/libuv-extra-automake-flags.m4])
|
||||||
m4_include([m4/as_case.m4])
|
m4_include([m4/as_case.m4])
|
||||||
|
|||||||
@ -33,8 +33,8 @@
|
|||||||
#define UV_VERSION_MAJOR 1
|
#define UV_VERSION_MAJOR 1
|
||||||
#define UV_VERSION_MINOR 24
|
#define UV_VERSION_MINOR 24
|
||||||
#define UV_VERSION_PATCH 1
|
#define UV_VERSION_PATCH 1
|
||||||
#define UV_VERSION_IS_RELEASE 0
|
#define UV_VERSION_IS_RELEASE 1
|
||||||
#define UV_VERSION_SUFFIX "dev"
|
#define UV_VERSION_SUFFIX ""
|
||||||
|
|
||||||
#define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \
|
#define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \
|
||||||
(UV_VERSION_MINOR << 8) | \
|
(UV_VERSION_MINOR << 8) | \
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user