2015.02.25, Version 1.4.1 (Stable)
Changes since version 1.4.0: * win: don't use inline keyword in thread.c (Ben Noordhuis) * windows: fix setting dirent types on uv_fs_scandir_next (Saúl Ibarra Corretgé) * unix,windows: make uv_thread_create() return errno (Ben Noordhuis) * tty: fix build for SmartOS (Julien Gilli) * unix: fix for uv_async data race (Michael Penick) * unix, windows: map EHOSTDOWN errno (Ben Noordhuis) * stream: use SO_OOBINLINE on OS X (Fedor Indutny)
This commit is contained in:
parent
7a3af176bd
commit
e8e3fc5789
1
AUTHORS
1
AUTHORS
@ -180,3 +180,4 @@ Alexey Melnichuk <mimir@newmail.ru>
|
|||||||
Johan Bergström <bugs@bergstroem.nu>
|
Johan Bergström <bugs@bergstroem.nu>
|
||||||
Alex Mo <almosnow@gmail.com>
|
Alex Mo <almosnow@gmail.com>
|
||||||
Luis Martinez de Bartolome <lasote@gmail.com>
|
Luis Martinez de Bartolome <lasote@gmail.com>
|
||||||
|
Michael Penick <michael.penick@datastax.com>
|
||||||
|
|||||||
20
ChangeLog
20
ChangeLog
@ -1,3 +1,23 @@
|
|||||||
|
2015.02.25, Version 1.4.1 (Stable)
|
||||||
|
|
||||||
|
Changes since version 1.4.0:
|
||||||
|
|
||||||
|
* win: don't use inline keyword in thread.c (Ben Noordhuis)
|
||||||
|
|
||||||
|
* windows: fix setting dirent types on uv_fs_scandir_next (Saúl Ibarra
|
||||||
|
Corretgé)
|
||||||
|
|
||||||
|
* unix,windows: make uv_thread_create() return errno (Ben Noordhuis)
|
||||||
|
|
||||||
|
* tty: fix build for SmartOS (Julien Gilli)
|
||||||
|
|
||||||
|
* unix: fix for uv_async data race (Michael Penick)
|
||||||
|
|
||||||
|
* unix, windows: map EHOSTDOWN errno (Ben Noordhuis)
|
||||||
|
|
||||||
|
* stream: use SO_OOBINLINE on OS X (Fedor Indutny)
|
||||||
|
|
||||||
|
|
||||||
2015.02.10, Version 1.4.0 (Stable), 19fb8a90648f3763240db004b77ab984264409be
|
2015.02.10, Version 1.4.0 (Stable), 19fb8a90648f3763240db004b77ab984264409be
|
||||||
|
|
||||||
Changes since version 1.3.0:
|
Changes since version 1.3.0:
|
||||||
|
|||||||
@ -13,7 +13,7 @@
|
|||||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
AC_PREREQ(2.57)
|
AC_PREREQ(2.57)
|
||||||
AC_INIT([libuv], [1.4.0], [https://github.com/libuv/libuv/issues])
|
AC_INIT([libuv], [1.4.1], [https://github.com/libuv/libuv/issues])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
m4_include([m4/libuv-extra-automake-flags.m4])
|
m4_include([m4/libuv-extra-automake-flags.m4])
|
||||||
m4_include([m4/as_case.m4])
|
m4_include([m4/as_case.m4])
|
||||||
|
|||||||
@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
#define UV_VERSION_MAJOR 1
|
#define UV_VERSION_MAJOR 1
|
||||||
#define UV_VERSION_MINOR 4
|
#define UV_VERSION_MINOR 4
|
||||||
#define UV_VERSION_PATCH 0
|
#define UV_VERSION_PATCH 1
|
||||||
#define UV_VERSION_IS_RELEASE 1
|
#define UV_VERSION_IS_RELEASE 1
|
||||||
#define UV_VERSION_SUFFIX ""
|
#define UV_VERSION_SUFFIX ""
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user