2013.08.30, Version 0.11.11 (Unstable)
Changes since version 0.11.10: * unix, windows: add thread-local storage API (Ben Noordhuis) * linux: don't turn on SO_REUSEPORT socket option (Ben Noordhuis) * darwin: fix 10.6 build error in fsevents.c (Ben Noordhuis) * windows: make uv_shutdown() for write-only pipes work (Bert Belder) * include: update uv_udp_open() / uv_udp_bind() docs (Ben Noordhuis) * unix: req queue must be empty when destroying loop (Ben Noordhuis) * unix: move loop functions from core.c to loop.c (Ben Noordhuis) * darwin: remove CoreFoundation dependency (Ben Noordhuis) * windows: make autotools build system work with mingw (Keno Fischer) * windows: fix mingw build (Alex Crichton) * windows: tweak Makefile.mingw for easier usage (Alex Crichton) * build: remove _GNU_SOURCE macro definition (Ben Noordhuis)
This commit is contained in:
parent
2e74e2ceca
commit
ba876d5353
1
.mailmap
1
.mailmap
@ -6,6 +6,7 @@ Brian White <mscdex@mscdex.net>
|
|||||||
Brian White <mscdex@mscdex.net> <mscdex@gmail.com>
|
Brian White <mscdex@mscdex.net> <mscdex@gmail.com>
|
||||||
Frank Denis <github@pureftpd.org>
|
Frank Denis <github@pureftpd.org>
|
||||||
Isaac Z. Schlueter <i@izs.me>
|
Isaac Z. Schlueter <i@izs.me>
|
||||||
|
Keno Fischer <kenof@stanford.edu> <kfischer@college.harvard.edu>
|
||||||
Robert Mustacchi <rm@joyent.com> <rm@fingolfin.org>
|
Robert Mustacchi <rm@joyent.com> <rm@fingolfin.org>
|
||||||
Ryan Dahl <ryan@joyent.com> <ry@tinyclouds.org>
|
Ryan Dahl <ryan@joyent.com> <ry@tinyclouds.org>
|
||||||
Ryan Emery <seebees@gmail.com>
|
Ryan Emery <seebees@gmail.com>
|
||||||
|
|||||||
1
AUTHORS
1
AUTHORS
@ -90,3 +90,4 @@ Wynn Wilkes <wynnw@movenetworks.com>
|
|||||||
Linus Mårtensson <linus.martensson@sonymobile.com>
|
Linus Mårtensson <linus.martensson@sonymobile.com>
|
||||||
Andrei Sedoi <bsnote@gmail.com>
|
Andrei Sedoi <bsnote@gmail.com>
|
||||||
Navaneeth Kedaram Nambiathan <navaneethkn@gmail.com>
|
Navaneeth Kedaram Nambiathan <navaneethkn@gmail.com>
|
||||||
|
Alex Crichton <alex@alexcrichton.com>
|
||||||
|
|||||||
29
ChangeLog
29
ChangeLog
@ -1,3 +1,32 @@
|
|||||||
|
2013.08.30, Version 0.11.11 (Unstable)
|
||||||
|
|
||||||
|
Changes since version 0.11.10:
|
||||||
|
|
||||||
|
* unix, windows: add thread-local storage API (Ben Noordhuis)
|
||||||
|
|
||||||
|
* linux: don't turn on SO_REUSEPORT socket option (Ben Noordhuis)
|
||||||
|
|
||||||
|
* darwin: fix 10.6 build error in fsevents.c (Ben Noordhuis)
|
||||||
|
|
||||||
|
* windows: make uv_shutdown() for write-only pipes work (Bert Belder)
|
||||||
|
|
||||||
|
* include: update uv_udp_open() / uv_udp_bind() docs (Ben Noordhuis)
|
||||||
|
|
||||||
|
* unix: req queue must be empty when destroying loop (Ben Noordhuis)
|
||||||
|
|
||||||
|
* unix: move loop functions from core.c to loop.c (Ben Noordhuis)
|
||||||
|
|
||||||
|
* darwin: remove CoreFoundation dependency (Ben Noordhuis)
|
||||||
|
|
||||||
|
* windows: make autotools build system work with mingw (Keno Fischer)
|
||||||
|
|
||||||
|
* windows: fix mingw build (Alex Crichton)
|
||||||
|
|
||||||
|
* windows: tweak Makefile.mingw for easier usage (Alex Crichton)
|
||||||
|
|
||||||
|
* build: remove _GNU_SOURCE macro definition (Ben Noordhuis)
|
||||||
|
|
||||||
|
|
||||||
2013.08.25, Version 0.11.10 (Unstable), 742dadcb7154cc7bb89c0c228a223b767a36cf0d
|
2013.08.25, Version 0.11.10 (Unstable), 742dadcb7154cc7bb89c0c228a223b767a36cf0d
|
||||||
|
|
||||||
* windows: Re-implement uv_fs_stat. The st_ctime field now contains the change
|
* windows: Re-implement uv_fs_stat. The st_ctime field now contains the change
|
||||||
|
|||||||
@ -32,7 +32,7 @@
|
|||||||
#define UV_VERSION_MAJOR 0
|
#define UV_VERSION_MAJOR 0
|
||||||
#define UV_VERSION_MINOR 11
|
#define UV_VERSION_MINOR 11
|
||||||
#define UV_VERSION_PATCH 11
|
#define UV_VERSION_PATCH 11
|
||||||
#define UV_VERSION_IS_RELEASE 0
|
#define UV_VERSION_IS_RELEASE 1
|
||||||
|
|
||||||
|
|
||||||
#define UV_VERSION ((UV_VERSION_MAJOR << 16) | \
|
#define UV_VERSION ((UV_VERSION_MAJOR << 16) | \
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user