2019.10.17, Version 1.33.0 (Stable)
Changes since version 1.32.0:
* Revert "linux: drop code path for epoll_pwait-less kernels" (Yang Yu)
* build: fix build error with __ANDROID_API__ < 21 (Yang Yu)
* win: fix reading hidden env vars (Anna Henningsen)
* unix,win: add uv_random() (Ben Noordhuis)
* win: simplify mkdtemp (Saúl Ibarra Corretgé)
* docs: fix literal-includes in User Guide (Nhan Khong)
* win, tty: fix problem of receiving unexpected SIGWINCH (erw7)
* unix: fix {Net,Open}BSD build (David Carlier)
* win,mingw: Fix undefined MCAST_* constants (Crunkle)
* build: Add link for test/fixtures/lorem_ipsum.txt (Andrew Paprocki)
* fs: use statvfs in uv__fs_statfs() for Haiku (Calvin Hill)
* fsevents: stop using fsevents to watch files (Jameson Nash)
* fsevents: regression in watching / (Jameson Nash)
* build,cmake: don't try to detect a C++ compiler (Isabella Muerte)
* build: fix build warning on cygwin (MaYuming)
* unix: set sin_len and sin6_len (Ouyang Yadong)
* test: fix order of operations in test (cjihrig)
* doc: improve uv_fs_readdir() cleanup docs (cjihrig)
* build: remove duplicated test in build files (ZYSzys)
* android: enable getentropy on Android >= 28 (David Carlier)
* android: fix build (David Carlier)
* darwin: speed up uv_set_process_title() (Ben Noordhuis)
* darwin: assume pthread_setname_np() is available (Ben Noordhuis)
* unix,udp: ensure addr is non-null (Jameson Nash)
* win,tty: add uv_tty_{get,set}_vterm_state (erw7)
* win: fix uv_statfs_t leak in uv_fs_statfs() (Ryan Liptak)
* build: install files on windows via cmake (Carl Lei)
* darwin,test: include AvailabilityMacros.h (Saúl Ibarra Corretgé)
* darwin,test: update loop time after sleeping (Saúl Ibarra Corretgé)
* doc: remove old FreeBSD 9 related note (Saúl Ibarra Corretgé)
* doc: improve uv_{send,recv}_buffer_size() docs (Ryan Liptak)
* build: move -Wno-long-long check to configure time (Ben Noordhuis)
* unix: update uv_fs_copyfile() fallback logic (Stefan Bender)
* win: cast setsockopt struct to const char* (Shelley Vohr)
This commit is contained in:
parent
68818b621a
commit
e56e42e931
8
AUTHORS
8
AUTHORS
@ -403,3 +403,11 @@ Vladimir Karnushin <v.karnushin@mail.ru>
|
|||||||
MaYuming <maym@appexnetworks.com>
|
MaYuming <maym@appexnetworks.com>
|
||||||
Eneas U de Queiroz <cotequeiroz@gmail.com>
|
Eneas U de Queiroz <cotequeiroz@gmail.com>
|
||||||
Daniel Hahler <git@thequod.de>
|
Daniel Hahler <git@thequod.de>
|
||||||
|
Yang Yu <yang.yu@disigma.org>
|
||||||
|
David Carlier <devnexen@gmail.com>
|
||||||
|
Calvin Hill <calvin@hakobaito.co.uk>
|
||||||
|
Isabella Muerte <63051+slurps-mad-rips@users.noreply.github.com>
|
||||||
|
Ouyang Yadong <oyydoibh@gmail.com>
|
||||||
|
ZYSzys <zyszys98@gmail.com>
|
||||||
|
Carl Lei <xecycle@gmail.com>
|
||||||
|
Stefan Bender <stefan.bender@ntnu.no>
|
||||||
|
|||||||
73
ChangeLog
73
ChangeLog
@ -1,3 +1,76 @@
|
|||||||
|
2019.10.17, Version 1.33.0 (Stable)
|
||||||
|
|
||||||
|
Changes since version 1.32.0:
|
||||||
|
|
||||||
|
* Revert "linux: drop code path for epoll_pwait-less kernels" (Yang Yu)
|
||||||
|
|
||||||
|
* build: fix build error with __ANDROID_API__ < 21 (Yang Yu)
|
||||||
|
|
||||||
|
* win: fix reading hidden env vars (Anna Henningsen)
|
||||||
|
|
||||||
|
* unix,win: add uv_random() (Ben Noordhuis)
|
||||||
|
|
||||||
|
* win: simplify mkdtemp (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
* docs: fix literal-includes in User Guide (Nhan Khong)
|
||||||
|
|
||||||
|
* win, tty: fix problem of receiving unexpected SIGWINCH (erw7)
|
||||||
|
|
||||||
|
* unix: fix {Net,Open}BSD build (David Carlier)
|
||||||
|
|
||||||
|
* win,mingw: Fix undefined MCAST_* constants (Crunkle)
|
||||||
|
|
||||||
|
* build: Add link for test/fixtures/lorem_ipsum.txt (Andrew Paprocki)
|
||||||
|
|
||||||
|
* fs: use statvfs in uv__fs_statfs() for Haiku (Calvin Hill)
|
||||||
|
|
||||||
|
* fsevents: stop using fsevents to watch files (Jameson Nash)
|
||||||
|
|
||||||
|
* fsevents: regression in watching / (Jameson Nash)
|
||||||
|
|
||||||
|
* build,cmake: don't try to detect a C++ compiler (Isabella Muerte)
|
||||||
|
|
||||||
|
* build: fix build warning on cygwin (MaYuming)
|
||||||
|
|
||||||
|
* unix: set sin_len and sin6_len (Ouyang Yadong)
|
||||||
|
|
||||||
|
* test: fix order of operations in test (cjihrig)
|
||||||
|
|
||||||
|
* doc: improve uv_fs_readdir() cleanup docs (cjihrig)
|
||||||
|
|
||||||
|
* build: remove duplicated test in build files (ZYSzys)
|
||||||
|
|
||||||
|
* android: enable getentropy on Android >= 28 (David Carlier)
|
||||||
|
|
||||||
|
* android: fix build (David Carlier)
|
||||||
|
|
||||||
|
* darwin: speed up uv_set_process_title() (Ben Noordhuis)
|
||||||
|
|
||||||
|
* darwin: assume pthread_setname_np() is available (Ben Noordhuis)
|
||||||
|
|
||||||
|
* unix,udp: ensure addr is non-null (Jameson Nash)
|
||||||
|
|
||||||
|
* win,tty: add uv_tty_{get,set}_vterm_state (erw7)
|
||||||
|
|
||||||
|
* win: fix uv_statfs_t leak in uv_fs_statfs() (Ryan Liptak)
|
||||||
|
|
||||||
|
* build: install files on windows via cmake (Carl Lei)
|
||||||
|
|
||||||
|
* darwin,test: include AvailabilityMacros.h (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
* darwin,test: update loop time after sleeping (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
* doc: remove old FreeBSD 9 related note (Saúl Ibarra Corretgé)
|
||||||
|
|
||||||
|
* doc: improve uv_{send,recv}_buffer_size() docs (Ryan Liptak)
|
||||||
|
|
||||||
|
* build: move -Wno-long-long check to configure time (Ben Noordhuis)
|
||||||
|
|
||||||
|
* unix: update uv_fs_copyfile() fallback logic (Stefan Bender)
|
||||||
|
|
||||||
|
* win: cast setsockopt struct to const char* (Shelley Vohr)
|
||||||
|
|
||||||
|
|
||||||
2019.09.10, Version 1.32.0 (Stable), 697bea87b3a0b0e9b4e5ff86b39d1dedb70ee46d
|
2019.09.10, Version 1.32.0 (Stable), 697bea87b3a0b0e9b4e5ff86b39d1dedb70ee46d
|
||||||
|
|
||||||
Changes since version 1.31.0:
|
Changes since version 1.31.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.32.0], [https://github.com/libuv/libuv/issues])
|
AC_INIT([libuv], [1.33.0], [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])
|
||||||
|
|||||||
@ -31,10 +31,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#define UV_VERSION_MAJOR 1
|
#define UV_VERSION_MAJOR 1
|
||||||
#define UV_VERSION_MINOR 32
|
#define UV_VERSION_MINOR 33
|
||||||
#define UV_VERSION_PATCH 1
|
#define UV_VERSION_PATCH 0
|
||||||
#define UV_VERSION_IS_RELEASE 0
|
#define UV_VERSION_IS_RELEASE 1
|
||||||
#define UV_VERSION_SUFFIX "dev"
|
#define UV_VERSION_SUFFIX ""
|
||||||
|
|
||||||
#define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \
|
#define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \
|
||||||
(UV_VERSION_MINOR << 8) | \
|
(UV_VERSION_MINOR << 8) | \
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user