2019.02.11, Version 1.26.0 (Stable)
Changes since version 1.25.0: * doc: fix uv_get_free_memory doc (Stephen Belanger) * unix: fix epoll cpu 100% issue (yeyuanfeng) * openbsd,tcp: special handling of EINVAL on connect (ptlomholt) * win: simplify registry closing in uv_cpu_info() (cjihrig) * src,include: define UV_MAXHOSTNAMESIZE (cjihrig) * win: return product name in uv_os_uname() version (cjihrig) * thread: allow specifying stack size for new thread (Anna Henningsen) * win: fix duplicate tty vt100 fn key (erw7) * unix: don't attempt to invalidate invalid fd (Ben Noordhuis)
This commit is contained in:
parent
1ce6393a57
commit
8669d8d3e9
3
AUTHORS
3
AUTHORS
@ -366,3 +366,6 @@ ptlomholt <pt@lomholt.com>
|
||||
Victor Costan <pwnall@chromium.org>
|
||||
sid <sidyhe@hotmail.com>
|
||||
Kevin Adler <kadler@us.ibm.com>
|
||||
Stephen Belanger <admin@stephenbelanger.com>
|
||||
yeyuanfeng <yeyuanfeng@bytedance.com>
|
||||
erw7 <erw7.github@gmail.com>
|
||||
|
||||
23
ChangeLog
23
ChangeLog
@ -1,3 +1,26 @@
|
||||
2019.02.11, Version 1.26.0 (Stable)
|
||||
|
||||
Changes since version 1.25.0:
|
||||
|
||||
* doc: fix uv_get_free_memory doc (Stephen Belanger)
|
||||
|
||||
* unix: fix epoll cpu 100% issue (yeyuanfeng)
|
||||
|
||||
* openbsd,tcp: special handling of EINVAL on connect (ptlomholt)
|
||||
|
||||
* win: simplify registry closing in uv_cpu_info() (cjihrig)
|
||||
|
||||
* src,include: define UV_MAXHOSTNAMESIZE (cjihrig)
|
||||
|
||||
* win: return product name in uv_os_uname() version (cjihrig)
|
||||
|
||||
* thread: allow specifying stack size for new thread (Anna Henningsen)
|
||||
|
||||
* win: fix duplicate tty vt100 fn key (erw7)
|
||||
|
||||
* unix: don't attempt to invalidate invalid fd (Ben Noordhuis)
|
||||
|
||||
|
||||
2019.01.19, Version 1.25.0 (Stable), 4a10a9d425863330af199e4b74bd688e62d945f1
|
||||
|
||||
Changes since version 1.24.1:
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([libuv], [1.25.0], [https://github.com/libuv/libuv/issues])
|
||||
AC_INIT([libuv], [1.26.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 25
|
||||
#define UV_VERSION_PATCH 1
|
||||
#define UV_VERSION_IS_RELEASE 0
|
||||
#define UV_VERSION_SUFFIX "dev"
|
||||
#define UV_VERSION_MINOR 26
|
||||
#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