2024.10.11, Version 1.49.1 (Stable)
Changes since version 1.49.0: * build: add darwin-syscalls.h to release tarball (Ben Noordhuis) * linux: use IORING_SETUP_NO_SQARRAY when available (Ben Noordhuis) * linux: use IORING_OP_FTRUNCATE when available (Ben Noordhuis) * win: fix pNtQueryDirectoryFile check (Rialbat) * win: fix WriteFile() error translation (Santiago Gimeno) * win,fs: uv_fs_rmdir() to return ENOENT on file (Santiago Gimeno) * win,pipe: ipc code does not support async read (Jameson Nash) * netbsd: fix build (Adam) * win,fs: fix bug in fs__readdir (Hüseyin Açacak) * unix: workaround gcc bug on armv7 (Santiago Gimeno) * unix: work around arm-linux-gnueabihf-gcc bug (Ben Noordhuis) * unix: fix uv_tcp_keepalive in smartOS (Santiago Gimeno) * unix: fix uv_getrusage ru_maxrss on solaris (Poul T Lomholt)
This commit is contained in:
parent
7c3abfbf1e
commit
8be336f4ee
1
.mailmap
1
.mailmap
@ -19,6 +19,7 @@ David Carlier <devnexen@gmail.com>
|
||||
Devchandra Meetei Leishangthem <dlmeetei@gmail.com>
|
||||
Fedor Indutny <fedor.indutny@gmail.com> <fedor@indutny.com>
|
||||
Frank Denis <github@pureftpd.org>
|
||||
Hüseyin Açacak <110401522+huseyinacacak-janea@users.noreply.github.com> <huseyin@janeasystems.com>
|
||||
Imran Iqbal <imrani@ca.ibm.com> <imran@imraniqbal.org>
|
||||
Isaac Z. Schlueter <i@izs.me>
|
||||
Jason Williams <necmon@yahoo.com>
|
||||
|
||||
3
AUTHORS
3
AUTHORS
@ -585,3 +585,6 @@ Ian Butterworth <i.r.butterworth@gmail.com>
|
||||
Zuohui Yang <274048862@qq.com>
|
||||
Edigleysson Silva (Edy) <edigleyssonsilva@gmail.com>
|
||||
Raihaan Shouhell <raihaanhimself@gmail.com>
|
||||
Rialbat <miha-wead@mail.ru>
|
||||
Adam <adam@NetBSD.org>
|
||||
Poul T Lomholt <ptlomholt@users.noreply.github.com>
|
||||
|
||||
31
ChangeLog
31
ChangeLog
@ -1,3 +1,34 @@
|
||||
2024.10.11, Version 1.49.1 (Stable)
|
||||
|
||||
Changes since version 1.49.0:
|
||||
|
||||
* build: add darwin-syscalls.h to release tarball (Ben Noordhuis)
|
||||
|
||||
* linux: use IORING_SETUP_NO_SQARRAY when available (Ben Noordhuis)
|
||||
|
||||
* linux: use IORING_OP_FTRUNCATE when available (Ben Noordhuis)
|
||||
|
||||
* win: fix pNtQueryDirectoryFile check (Rialbat)
|
||||
|
||||
* win: fix WriteFile() error translation (Santiago Gimeno)
|
||||
|
||||
* win,fs: uv_fs_rmdir() to return ENOENT on file (Santiago Gimeno)
|
||||
|
||||
* win,pipe: ipc code does not support async read (Jameson Nash)
|
||||
|
||||
* netbsd: fix build (Adam)
|
||||
|
||||
* win,fs: fix bug in fs__readdir (Hüseyin Açacak)
|
||||
|
||||
* unix: workaround gcc bug on armv7 (Santiago Gimeno)
|
||||
|
||||
* unix: work around arm-linux-gnueabihf-gcc bug (Ben Noordhuis)
|
||||
|
||||
* unix: fix uv_tcp_keepalive in smartOS (Santiago Gimeno)
|
||||
|
||||
* unix: fix uv_getrusage ru_maxrss on solaris (Poul T Lomholt)
|
||||
|
||||
|
||||
2024.09.25, Version 1.49.0 (Stable), d2e56a5e8d3e39947b78405ca6e4727c70f5568a
|
||||
|
||||
Changes since version 1.48.0:
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([libuv], [1.49.1-dev], [https://github.com/libuv/libuv/issues])
|
||||
AC_INIT([libuv], [1.49.1], [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])
|
||||
|
||||
@ -33,8 +33,8 @@
|
||||
#define UV_VERSION_MAJOR 1
|
||||
#define UV_VERSION_MINOR 49
|
||||
#define UV_VERSION_PATCH 1
|
||||
#define UV_VERSION_IS_RELEASE 0
|
||||
#define UV_VERSION_SUFFIX "dev"
|
||||
#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