2017.02.02, Version 1.11.0 (Stable)
Changes since version 1.10.2: * Now working on version 1.10.3 (cjihrig) * win: added fcntl.h to uv-win.h (Michele Caini) * unix: move function call out of assert (jBarz) * fs: cleanup uv__fs_scandir (Santiago Gimeno) * fs: fix crash in uv_fs_scandir_next (muflub) * win,signal: fix potential deadlock (Bartosz Sosnowski) * unix: use async-signal safe functions between fork and exec (jBarz) * sunos: fix SUNOS_NO_IFADDRS build (Ben Noordhuis) * zos: make platform functional (John Barboza) * doc: add repitition qualifier to version regexs (Daniel Bevenius) * zos: use gyp OS label "os390" on z/OS (John Barboza) * aix: enable uv_get/set_process_title (Howard Hellyer) * zos: use built-in proctitle implementation (John Barboza) * Revert "darwin: use clock_gettime in macOS 10.12" (Chris Araman) * win,test: don't write uninitialized buffer to tty (Bert Belder) * win: define ERROR_ELEVATION_REQUIRED for MinGW (Richard Lau) * aix: re-enable fs watch facility (Gireesh Punathil)
This commit is contained in:
parent
fb0f87b6d7
commit
7452ef4e06
1
.mailmap
1
.mailmap
@ -1,6 +1,7 @@
|
||||
Aaron Bieber <qbit@deftly.net> <deftly@gmail.com>
|
||||
Alan Gutierrez <alan@prettyrobots.com> <alan@blogometer.com>
|
||||
Andrius Bentkus <andrius.bentkus@gmail.com> <toxedvirus@gmail.com>
|
||||
Bert Belder <bertbelder@gmail.com> <i@bertbelder.com>
|
||||
Bert Belder <bertbelder@gmail.com> <info@2bs.nl>
|
||||
Bert Belder <bertbelder@gmail.com> <user@ChrUbuntu.(none)>
|
||||
Brandon Philips <brandon.philips@rackspace.com> <brandon@ifup.org>
|
||||
|
||||
5
AUTHORS
5
AUTHORS
@ -279,3 +279,8 @@ Philippe Laferriere <laferriere.phil@gmail.com>
|
||||
Will Speak <lithiumflame@gmail.com>
|
||||
Hitesh Kanwathirtha <digitalinfinity@gmail.com>
|
||||
Eric Sciple <ersciple@microsoft.com>
|
||||
jBarz <jBarz@users.noreply.github.com>
|
||||
muflub <admin@lodle.net>
|
||||
Daniel Bevenius <daniel.bevenius@gmail.com>
|
||||
Howard Hellyer <hhellyer@uk.ibm.com>
|
||||
Chris Araman <chris.araman@fuze.com>
|
||||
|
||||
39
ChangeLog
39
ChangeLog
@ -1,3 +1,42 @@
|
||||
2017.02.02, Version 1.11.0 (Stable)
|
||||
|
||||
Changes since version 1.10.2:
|
||||
|
||||
* Now working on version 1.10.3 (cjihrig)
|
||||
|
||||
* win: added fcntl.h to uv-win.h (Michele Caini)
|
||||
|
||||
* unix: move function call out of assert (jBarz)
|
||||
|
||||
* fs: cleanup uv__fs_scandir (Santiago Gimeno)
|
||||
|
||||
* fs: fix crash in uv_fs_scandir_next (muflub)
|
||||
|
||||
* win,signal: fix potential deadlock (Bartosz Sosnowski)
|
||||
|
||||
* unix: use async-signal safe functions between fork and exec (jBarz)
|
||||
|
||||
* sunos: fix SUNOS_NO_IFADDRS build (Ben Noordhuis)
|
||||
|
||||
* zos: make platform functional (John Barboza)
|
||||
|
||||
* doc: add repitition qualifier to version regexs (Daniel Bevenius)
|
||||
|
||||
* zos: use gyp OS label "os390" on z/OS (John Barboza)
|
||||
|
||||
* aix: enable uv_get/set_process_title (Howard Hellyer)
|
||||
|
||||
* zos: use built-in proctitle implementation (John Barboza)
|
||||
|
||||
* Revert "darwin: use clock_gettime in macOS 10.12" (Chris Araman)
|
||||
|
||||
* win,test: don't write uninitialized buffer to tty (Bert Belder)
|
||||
|
||||
* win: define ERROR_ELEVATION_REQUIRED for MinGW (Richard Lau)
|
||||
|
||||
* aix: re-enable fs watch facility (Gireesh Punathil)
|
||||
|
||||
|
||||
2017.01.10, Version 1.10.2 (Stable), cb9f579a454b8db592030ffa274ae58df78dbe20
|
||||
|
||||
Changes since version 1.10.1:
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
version: v1.10.2.build{build}
|
||||
version: v1.11.0.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.2], [https://github.com/libuv/libuv/issues])
|
||||
AC_INIT([libuv], [1.11.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 10
|
||||
#define UV_VERSION_PATCH 3
|
||||
#define UV_VERSION_IS_RELEASE 0
|
||||
#define UV_VERSION_SUFFIX "dev"
|
||||
#define UV_VERSION_MINOR 11
|
||||
#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