2017.09.07, Version 1.14.1 (Stable)
Changes since version 1.14.0: * fs, win: add support for user symlinks (Bartosz Sosnowski) * cygwin: include uv-posix.h header (Joel Winarske) * zos: fix semaphore initialization (jBarz) * zos: improve loop_count benchmark performance (jBarz) * zos, test: flush out the oob data in callback (jBarz) * unix,win: check for bad flags in uv_fs_copyfile() (cjihrig) * unix: modify argv[0] when process title is set (Matthew Taylor) * unix: don't use req->loop in uv__fs_copyfile() (cjihrig) * doc: fix a trivial typo (Vladimír Čunát) * android: fix uv_cond_timedwait on API level < 21 (Gergely Nagy) * win: add uv__once_init() calls (Bartosz Sosnowski) * unix,windows: init all requests in fs calls (cjihrig) * unix,windows: return UV_EINVAL on NULL fs reqs (cjihrig) * windows: add POST macro to fs functions (cjihrig) * unix: handle partial sends in uv_fs_copyfile() (A. Hauptmann) * Revert "win, test: fix double close in test runner" (Bartosz Sosnowski) * win, test: remove surplus CloseHandle (Bartosz Sosnowski)
This commit is contained in:
parent
e79589d550
commit
b0f9fb2a07
2
AUTHORS
2
AUTHORS
@ -306,3 +306,5 @@ XadillaX <admin@xcoder.in>
|
||||
Anticrisis <anticrisisg@gmail.com>
|
||||
Jacob Segal <jacob.e.segal@gmail.com>
|
||||
Maciej Szeptuch (Neverous) <neverous@neverous.info>
|
||||
Joel Winarske <joel.winarske@inrix.com>
|
||||
Gergely Nagy <ngg@tresorit.com>
|
||||
|
||||
39
ChangeLog
39
ChangeLog
@ -1,3 +1,42 @@
|
||||
2017.09.07, Version 1.14.1 (Stable)
|
||||
|
||||
Changes since version 1.14.0:
|
||||
|
||||
* fs, win: add support for user symlinks (Bartosz Sosnowski)
|
||||
|
||||
* cygwin: include uv-posix.h header (Joel Winarske)
|
||||
|
||||
* zos: fix semaphore initialization (jBarz)
|
||||
|
||||
* zos: improve loop_count benchmark performance (jBarz)
|
||||
|
||||
* zos, test: flush out the oob data in callback (jBarz)
|
||||
|
||||
* unix,win: check for bad flags in uv_fs_copyfile() (cjihrig)
|
||||
|
||||
* unix: modify argv[0] when process title is set (Matthew Taylor)
|
||||
|
||||
* unix: don't use req->loop in uv__fs_copyfile() (cjihrig)
|
||||
|
||||
* doc: fix a trivial typo (Vladimír Čunát)
|
||||
|
||||
* android: fix uv_cond_timedwait on API level < 21 (Gergely Nagy)
|
||||
|
||||
* win: add uv__once_init() calls (Bartosz Sosnowski)
|
||||
|
||||
* unix,windows: init all requests in fs calls (cjihrig)
|
||||
|
||||
* unix,windows: return UV_EINVAL on NULL fs reqs (cjihrig)
|
||||
|
||||
* windows: add POST macro to fs functions (cjihrig)
|
||||
|
||||
* unix: handle partial sends in uv_fs_copyfile() (A. Hauptmann)
|
||||
|
||||
* Revert "win, test: fix double close in test runner" (Bartosz Sosnowski)
|
||||
|
||||
* win, test: remove surplus CloseHandle (Bartosz Sosnowski)
|
||||
|
||||
|
||||
2017.08.17, Version 1.14.0 (Stable), e0d31e9e21870f88277746b6d59cf07b977cdfea
|
||||
|
||||
Changes since version 1.13.1:
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
version: v1.14.0.build{build}
|
||||
version: v1.14.1.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.0], [https://github.com/libuv/libuv/issues])
|
||||
AC_INIT([libuv], [1.14.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 14
|
||||
#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