2019.05.22, Version 1.29.1 (Stable)
Changes since version 1.29.0: * unix: simplify uv/posix.h include logic (cjihrig) * test: increase test timeout (cjihrig) * linux: fix sscanf() overflows reading from /proc (Ben Noordhuis)
This commit is contained in:
parent
d7f0055b80
commit
d16e6094e1
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
||||
2019.05.22, Version 1.29.1 (Stable)
|
||||
|
||||
Changes since version 1.29.0:
|
||||
|
||||
* unix: simplify uv/posix.h include logic (cjihrig)
|
||||
|
||||
* test: increase test timeout (cjihrig)
|
||||
|
||||
* linux: fix sscanf() overflows reading from /proc (Ben Noordhuis)
|
||||
|
||||
|
||||
2019.05.16, Version 1.29.0 (Stable), 43957efd92c167b352b4c948b617ca7afbee0ed1
|
||||
|
||||
Changes since version 1.28.0:
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([libuv], [1.29.0], [https://github.com/libuv/libuv/issues])
|
||||
AC_INIT([libuv], [1.29.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 29
|
||||
#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…
Reference in New Issue
Block a user