diff --git a/.mailmap b/.mailmap index 4870e449..97f5d1f2 100644 --- a/.mailmap +++ b/.mailmap @@ -19,6 +19,7 @@ David Carlier Devchandra Meetei Leishangthem Fedor Indutny Frank Denis +Hüseyin Açacak <110401522+huseyinacacak-janea@users.noreply.github.com> Imran Iqbal Isaac Z. Schlueter Jason Williams diff --git a/AUTHORS b/AUTHORS index df8ca842..807440b3 100644 --- a/AUTHORS +++ b/AUTHORS @@ -585,3 +585,6 @@ Ian Butterworth Zuohui Yang <274048862@qq.com> Edigleysson Silva (Edy) Raihaan Shouhell +Rialbat +Adam +Poul T Lomholt diff --git a/ChangeLog b/ChangeLog index 16276838..e1d1aa32 100644 --- a/ChangeLog +++ b/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: diff --git a/configure.ac b/configure.ac index d4ce099e..e3ee8a84 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) diff --git a/include/uv/version.h b/include/uv/version.h index 7d7b9ecf..77a8b254 100644 --- a/include/uv/version.h +++ b/include/uv/version.h @@ -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) | \