mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
2013.06.27, Version 0.11.5 (Unstable)
Changes since version 0.11.4: * build: remove CSTDFLAG, use only CFLAGS (Ben Noordhuis) * unix: support for android builds (Linus Mårtensson) * unix: avoid extra read, short-circuit on POLLHUP (Ben Noordhuis) * uv: support android libuv standalone build (Linus Mårtensson) * src: make queue.h c++ compatible (Ben Noordhuis) * unix: s/ngx-queue.h/queue.h/ in checksparse.sh (Ben Noordhuis) * unix: unconditionally stop handle on close (Ben Noordhuis) * freebsd: don't enable dtrace if it's not available (Brian White) * build: make HAVE_DTRACE=0 should disable dtrace (Timothy J. Fontaine) * unix: remove overzealous assert (Ben Noordhuis) * unix: remove unused function uv_fatal_error() (Ben Noordhuis) * unix, windows: clean up uv_thread_create() (Ben Noordhuis) * queue: fix pointer truncation on LLP64 platforms (Bert Belder) * build: set OS=="android" for android builds (Linus Mårtensson) * windows: don't use uppercase in include filename (Ben Noordhuis) * stream: add an API to make streams do blocking writes (Henry Rawas) * windows: use WSAGetLastError(), not errno (Ben Noordhuis)
This commit is contained in:
parent
30a8b44c4c
commit
e3c63ff162
2
AUTHORS
2
AUTHORS
@ -88,3 +88,5 @@ Miroslav Bajtoš <miro.bajtos@gmail.com>
|
||||
Elliot Saba <staticfloat@gmail.com>
|
||||
Sean Silva <chisophugis@gmail.com>
|
||||
Wynn Wilkes <wynnw@movenetworks.com>
|
||||
Linus Mårtensson <linus.martensson@sonymobile.com>
|
||||
Andrei Sedoi <bsnote@gmail.com>
|
||||
|
39
ChangeLog
39
ChangeLog
@ -1,3 +1,42 @@
|
||||
2013.06.27, Version 0.11.5 (Unstable)
|
||||
|
||||
Changes since version 0.11.4:
|
||||
|
||||
* build: remove CSTDFLAG, use only CFLAGS (Ben Noordhuis)
|
||||
|
||||
* unix: support for android builds (Linus Mårtensson)
|
||||
|
||||
* unix: avoid extra read, short-circuit on POLLHUP (Ben Noordhuis)
|
||||
|
||||
* uv: support android libuv standalone build (Linus Mårtensson)
|
||||
|
||||
* src: make queue.h c++ compatible (Ben Noordhuis)
|
||||
|
||||
* unix: s/ngx-queue.h/queue.h/ in checksparse.sh (Ben Noordhuis)
|
||||
|
||||
* unix: unconditionally stop handle on close (Ben Noordhuis)
|
||||
|
||||
* freebsd: don't enable dtrace if it's not available (Brian White)
|
||||
|
||||
* build: make HAVE_DTRACE=0 should disable dtrace (Timothy J. Fontaine)
|
||||
|
||||
* unix: remove overzealous assert (Ben Noordhuis)
|
||||
|
||||
* unix: remove unused function uv_fatal_error() (Ben Noordhuis)
|
||||
|
||||
* unix, windows: clean up uv_thread_create() (Ben Noordhuis)
|
||||
|
||||
* queue: fix pointer truncation on LLP64 platforms (Bert Belder)
|
||||
|
||||
* build: set OS=="android" for android builds (Linus Mårtensson)
|
||||
|
||||
* windows: don't use uppercase in include filename (Ben Noordhuis)
|
||||
|
||||
* stream: add an API to make streams do blocking writes (Henry Rawas)
|
||||
|
||||
* windows: use WSAGetLastError(), not errno (Ben Noordhuis)
|
||||
|
||||
|
||||
2013.06.13, Version 0.10.11 (Stable), c3b75406a66a10222a589cb173e8f469e9665c7e
|
||||
|
||||
Changes since version 0.10.10:
|
||||
|
@ -32,7 +32,7 @@
|
||||
#define UV_VERSION_MAJOR 0
|
||||
#define UV_VERSION_MINOR 11
|
||||
#define UV_VERSION_PATCH 5
|
||||
#define UV_VERSION_IS_RELEASE 0
|
||||
#define UV_VERSION_IS_RELEASE 1
|
||||
|
||||
|
||||
#define UV_VERSION ((UV_VERSION_MAJOR << 16) | \
|
||||
|
Loading…
x
Reference in New Issue
Block a user