2017.01.10, Version 1.10.2 (Stable)
Changes since version 1.10.1: * Now working on version 1.10.2 (cjihrig) * darwin: fix fsync and fdatasync (Joran Dirk Greef) * Revert "Revert "win,tty: add support for ANSI codes in win10 v1511"" (Santiago Gimeno) * win,tty: fix MultiByteToWideChar output buffer (Santiago Gimeno) * win: remove dead code related to BACKUP_SEMANTICS (Sam Roberts) * win: fix comment in quote_cmd_arg (Eric Sciple) * darwin: use clock_gettime in macOS 10.12 (Saúl Ibarra Corretgé) * win, tty: fix crash on restarting with pending data (Nicholas Vavilov) * fs: fix uv__to_stat on BSD platforms (Santiago Gimeno) * win: map ERROR_ELEVATION_REQUIRED to UV_EACCES (Richard Lau) * win: fix free() on bad input in uv_getaddrinfo() (Ben Noordhuis)
This commit is contained in:
parent
7bfb5ae7f9
commit
cb9f579a45
1
AUTHORS
1
AUTHORS
@ -278,3 +278,4 @@ Brad King <brad.king@kitware.com>
|
||||
Philippe Laferriere <laferriere.phil@gmail.com>
|
||||
Will Speak <lithiumflame@gmail.com>
|
||||
Hitesh Kanwathirtha <digitalinfinity@gmail.com>
|
||||
Eric Sciple <ersciple@microsoft.com>
|
||||
|
||||
28
ChangeLog
28
ChangeLog
@ -1,3 +1,31 @@
|
||||
2017.01.10, Version 1.10.2 (Stable)
|
||||
|
||||
Changes since version 1.10.1:
|
||||
|
||||
* Now working on version 1.10.2 (cjihrig)
|
||||
|
||||
* darwin: fix fsync and fdatasync (Joran Dirk Greef)
|
||||
|
||||
* Revert "Revert "win,tty: add support for ANSI codes in win10 v1511""
|
||||
(Santiago Gimeno)
|
||||
|
||||
* win,tty: fix MultiByteToWideChar output buffer (Santiago Gimeno)
|
||||
|
||||
* win: remove dead code related to BACKUP_SEMANTICS (Sam Roberts)
|
||||
|
||||
* win: fix comment in quote_cmd_arg (Eric Sciple)
|
||||
|
||||
* darwin: use clock_gettime in macOS 10.12 (Saúl Ibarra Corretgé)
|
||||
|
||||
* win, tty: fix crash on restarting with pending data (Nicholas Vavilov)
|
||||
|
||||
* fs: fix uv__to_stat on BSD platforms (Santiago Gimeno)
|
||||
|
||||
* win: map ERROR_ELEVATION_REQUIRED to UV_EACCES (Richard Lau)
|
||||
|
||||
* win: fix free() on bad input in uv_getaddrinfo() (Ben Noordhuis)
|
||||
|
||||
|
||||
2016.11.17, Version 1.10.1 (Stable), 2e49e332bdede6db7cf17fa784a902e8386d5d86
|
||||
|
||||
Changes since version 1.10.0:
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
version: v1.10.1.build{build}
|
||||
version: v1.10.2.build{build}
|
||||
|
||||
install:
|
||||
- cinst -y nsis
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([libuv], [1.10.1], [https://github.com/libuv/libuv/issues])
|
||||
AC_INIT([libuv], [1.10.2], [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 10
|
||||
#define UV_VERSION_PATCH 2
|
||||
#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