mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
2017.11.07, Version 1.16.0 (Stable)
Changes since version 1.15.0: * win: change st_blksize from `2048` to `4096` (Joran Dirk Greef) * unix,win: add fs open flags, map O_DIRECT|O_DSYNC (Joran Dirk Greef) * win, fs: fix non-symlink reparse points (Wade Brainerd) * test: fix -Wstrict-prototypes warnings (Ben Noordhuis) * unix, windows: map ENOTTY errno (Ben Noordhuis) * unix: fall back to fsync() if F_FULLFSYNC fails (Joran Dirk Greef) * unix: do not close invalid kqueue fd after fork (jBarz) * zos: reset epoll data after fork (jBarz) * zos: skip fork_threadpool_queue_work_simple (jBarz) * test: keep platform_output as first test (Bartosz Sosnowski) * win: fix non-English dlopen error message (Bartosz Sosnowski) * unix,win: add uv_os_getppid() (cjihrig) * test: fix const qualification compiler warning (Ben Noordhuis) * doc: mark uv_default_loop() as not thread safe (rayrase) * win, pipe: null-initialize stream->shutdown_req (Jameson Nash) * tty, win: get SetWinEventHook pointer at startup (Bartosz Sosnowski) * test: no extra new line in skipped test output (Bartosz Sosnowski) * pipe: allow access from other users (Bartosz Sosnowski) * unix,win: add uv_if_{indextoname,indextoiid} (Pekka Nikander)
This commit is contained in:
parent
695afe8322
commit
d68779f0ea
3
AUTHORS
3
AUTHORS
@ -315,3 +315,6 @@ darobs <darobs@microsoft.com>
|
||||
Zheng, Lei <realthunder.dev@gmail.com>
|
||||
Carlo Marcelo Arenas Belón <carenas@gmail.com>
|
||||
Scott Parker <scott.parker087@gmail.com>
|
||||
Wade Brainerd <Wade.Brainerd@activision.com>
|
||||
rayrase <rmartinez2175@eagle.fgcu.edu>
|
||||
Pekka Nikander <pekka.nikander@iki.fi>
|
||||
|
43
ChangeLog
43
ChangeLog
@ -1,3 +1,46 @@
|
||||
2017.11.07, Version 1.16.0 (Stable)
|
||||
|
||||
Changes since version 1.15.0:
|
||||
|
||||
* win: change st_blksize from `2048` to `4096` (Joran Dirk Greef)
|
||||
|
||||
* unix,win: add fs open flags, map O_DIRECT|O_DSYNC (Joran Dirk Greef)
|
||||
|
||||
* win, fs: fix non-symlink reparse points (Wade Brainerd)
|
||||
|
||||
* test: fix -Wstrict-prototypes warnings (Ben Noordhuis)
|
||||
|
||||
* unix, windows: map ENOTTY errno (Ben Noordhuis)
|
||||
|
||||
* unix: fall back to fsync() if F_FULLFSYNC fails (Joran Dirk Greef)
|
||||
|
||||
* unix: do not close invalid kqueue fd after fork (jBarz)
|
||||
|
||||
* zos: reset epoll data after fork (jBarz)
|
||||
|
||||
* zos: skip fork_threadpool_queue_work_simple (jBarz)
|
||||
|
||||
* test: keep platform_output as first test (Bartosz Sosnowski)
|
||||
|
||||
* win: fix non-English dlopen error message (Bartosz Sosnowski)
|
||||
|
||||
* unix,win: add uv_os_getppid() (cjihrig)
|
||||
|
||||
* test: fix const qualification compiler warning (Ben Noordhuis)
|
||||
|
||||
* doc: mark uv_default_loop() as not thread safe (rayrase)
|
||||
|
||||
* win, pipe: null-initialize stream->shutdown_req (Jameson Nash)
|
||||
|
||||
* tty, win: get SetWinEventHook pointer at startup (Bartosz Sosnowski)
|
||||
|
||||
* test: no extra new line in skipped test output (Bartosz Sosnowski)
|
||||
|
||||
* pipe: allow access from other users (Bartosz Sosnowski)
|
||||
|
||||
* unix,win: add uv_if_{indextoname,indextoiid} (Pekka Nikander)
|
||||
|
||||
|
||||
2017.10.03, Version 1.15.0 (Stable), 8b69ce1419d2958011d415a636810705c36c2cc2
|
||||
|
||||
Changes since version 1.14.1:
|
||||
|
@ -1,4 +1,4 @@
|
||||
version: v1.15.0.build{build}
|
||||
version: v1.16.0.build{build}
|
||||
|
||||
init:
|
||||
- git config --global core.autocrlf true
|
||||
|
@ -13,7 +13,7 @@
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([libuv], [1.15.0], [https://github.com/libuv/libuv/issues])
|
||||
AC_INIT([libuv], [1.16.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 15
|
||||
#define UV_VERSION_PATCH 1
|
||||
#define UV_VERSION_IS_RELEASE 0
|
||||
#define UV_VERSION_SUFFIX "dev"
|
||||
#define UV_VERSION_MINOR 16
|
||||
#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…
x
Reference in New Issue
Block a user