2017.10.03, Version 1.15.0 (Stable)
Changes since version 1.14.1: * unix: limit uv__has_forked_with_cfrunloop to macOS (Kamil Rytarowski) * win: fix buffer size in uv__getpwuid_r() (tux.uudiin) * win,tty: improve SIGWINCH support (Bartosz Sosnowski) * unix: use fchmod() in uv_fs_copyfile() (cjihrig) * unix: support copying empty files (cjihrig) * unix: truncate destination in uv_fs_copyfile() (Nick Logan) * win,build: keep cwd when setting build environment (darobs) * test: add NetBSD support to test-udp-ipv6.c (Kamil Rytarowski) * unix: add NetBSD support in core.c (Kamil Rytarowski) * linux: increase thread stack size with musl libc (Ben Noordhuis) * netbsd: correct uv_exepath() on NetBSD (Kamil Rytarowski) * test: clean up semaphore after use (jBarz) * win,build: bump vswhere_usability_wrapper to 2.0.0 (Refael Ackermann) * win: let UV_PROCESS_WINDOWS_HIDE hide consoles (cjihrig) * zos: lock protect global epoll list in epoll_ctl (jBarz) * zos: change platform name to match python (jBarz) * android: fix getifaddrs() (Zheng, Lei) * netbsd: implement uv__tty_is_slave() (Kamil Rytarowski) * zos: fix readlink for mounts with system variables (jBarz) * test: sort the tests alphabetically (Sakthipriyan Vairamani) * windows: fix compilation warnings (Carlo Marcelo Arenas Belón) * build: avoid -fstrict-aliasing compile option (jBarz) * win: remove unused variables (Carlo Marcelo Arenas Belón) * unix: remove unused variables (Sakthipriyan Vairamani) * netbsd: disable poll_bad_fdtype on NetBSD (Kamil Rytarowski) * netbsd: use uv__cloexec and uv__nonblock (Kamil Rytarowski) * test: fix udp_multicast_join6 on NetBSD (Kamil Rytarowski) * unix,win: add uv_mutex_init_recursive() (Scott Parker) * netbsd: do not exclude IPv6 functionality (Kamil Rytarowski) * fsevents: watch files with fsevents on macos 10.7+ (Ben Noordhuis) * unix: retry on ENOBUFS in sendmsg(2) (Kamil Rytarowski)
This commit is contained in:
parent
8a9585232e
commit
8b69ce1419
1
.mailmap
1
.mailmap
@ -31,6 +31,7 @@ Rasmus Christian Pedersen <zerhacken@yahoo.com> <ruysch@outlook.com>
|
||||
Robert Mustacchi <rm@joyent.com> <rm@fingolfin.org>
|
||||
Ryan Dahl <ryan@joyent.com> <ry@tinyclouds.org>
|
||||
Ryan Emery <seebees@gmail.com>
|
||||
Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
|
||||
Sam Roberts <vieuxtech@gmail.com> <sam@strongloop.com>
|
||||
San-Tai Hsu <vanilla@fatpipi.com>
|
||||
Santiago Gimeno <santiago.gimeno@quantion.es> <santiago.gimeno@gmail.com>
|
||||
|
||||
7
AUTHORS
7
AUTHORS
@ -308,3 +308,10 @@ Jacob Segal <jacob.e.segal@gmail.com>
|
||||
Maciej Szeptuch (Neverous) <neverous@neverous.info>
|
||||
Joel Winarske <joel.winarske@inrix.com>
|
||||
Gergely Nagy <ngg@tresorit.com>
|
||||
Kamil Rytarowski <n54@gmx.com>
|
||||
tux.uudiin <77389867@qq.com>
|
||||
Nick Logan <ugexe@cpan.org>
|
||||
darobs <darobs@microsoft.com>
|
||||
Zheng, Lei <realthunder.dev@gmail.com>
|
||||
Carlo Marcelo Arenas Belón <carenas@gmail.com>
|
||||
Scott Parker <scott.parker087@gmail.com>
|
||||
|
||||
67
ChangeLog
67
ChangeLog
@ -1,3 +1,70 @@
|
||||
2017.10.03, Version 1.15.0 (Stable)
|
||||
|
||||
Changes since version 1.14.1:
|
||||
|
||||
* unix: limit uv__has_forked_with_cfrunloop to macOS (Kamil Rytarowski)
|
||||
|
||||
* win: fix buffer size in uv__getpwuid_r() (tux.uudiin)
|
||||
|
||||
* win,tty: improve SIGWINCH support (Bartosz Sosnowski)
|
||||
|
||||
* unix: use fchmod() in uv_fs_copyfile() (cjihrig)
|
||||
|
||||
* unix: support copying empty files (cjihrig)
|
||||
|
||||
* unix: truncate destination in uv_fs_copyfile() (Nick Logan)
|
||||
|
||||
* win,build: keep cwd when setting build environment (darobs)
|
||||
|
||||
* test: add NetBSD support to test-udp-ipv6.c (Kamil Rytarowski)
|
||||
|
||||
* unix: add NetBSD support in core.c (Kamil Rytarowski)
|
||||
|
||||
* linux: increase thread stack size with musl libc (Ben Noordhuis)
|
||||
|
||||
* netbsd: correct uv_exepath() on NetBSD (Kamil Rytarowski)
|
||||
|
||||
* test: clean up semaphore after use (jBarz)
|
||||
|
||||
* win,build: bump vswhere_usability_wrapper to 2.0.0 (Refael Ackermann)
|
||||
|
||||
* win: let UV_PROCESS_WINDOWS_HIDE hide consoles (cjihrig)
|
||||
|
||||
* zos: lock protect global epoll list in epoll_ctl (jBarz)
|
||||
|
||||
* zos: change platform name to match python (jBarz)
|
||||
|
||||
* android: fix getifaddrs() (Zheng, Lei)
|
||||
|
||||
* netbsd: implement uv__tty_is_slave() (Kamil Rytarowski)
|
||||
|
||||
* zos: fix readlink for mounts with system variables (jBarz)
|
||||
|
||||
* test: sort the tests alphabetically (Sakthipriyan Vairamani)
|
||||
|
||||
* windows: fix compilation warnings (Carlo Marcelo Arenas Belón)
|
||||
|
||||
* build: avoid -fstrict-aliasing compile option (jBarz)
|
||||
|
||||
* win: remove unused variables (Carlo Marcelo Arenas Belón)
|
||||
|
||||
* unix: remove unused variables (Sakthipriyan Vairamani)
|
||||
|
||||
* netbsd: disable poll_bad_fdtype on NetBSD (Kamil Rytarowski)
|
||||
|
||||
* netbsd: use uv__cloexec and uv__nonblock (Kamil Rytarowski)
|
||||
|
||||
* test: fix udp_multicast_join6 on NetBSD (Kamil Rytarowski)
|
||||
|
||||
* unix,win: add uv_mutex_init_recursive() (Scott Parker)
|
||||
|
||||
* netbsd: do not exclude IPv6 functionality (Kamil Rytarowski)
|
||||
|
||||
* fsevents: watch files with fsevents on macos 10.7+ (Ben Noordhuis)
|
||||
|
||||
* unix: retry on ENOBUFS in sendmsg(2) (Kamil Rytarowski)
|
||||
|
||||
|
||||
2017.09.07, Version 1.14.1 (Stable), b0f9fb2a07a5e638b1580fe9a42a356c3ab35f37
|
||||
|
||||
Changes since version 1.14.0:
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
version: v1.14.1.build{build}
|
||||
version: v1.15.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.14.1], [https://github.com/libuv/libuv/issues])
|
||||
AC_INIT([libuv], [1.15.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 14
|
||||
#define UV_VERSION_PATCH 2
|
||||
#define UV_VERSION_IS_RELEASE 0
|
||||
#define UV_VERSION_SUFFIX "dev"
|
||||
#define UV_VERSION_MINOR 15
|
||||
#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