diff options
-rw-r--r-- | .mailmap | 1 | ||||
-rw-r--r-- | AUTHORS | 3 | ||||
-rw-r--r-- | ChangeLog | 31 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | include/uv/version.h | 4 |
5 files changed, 38 insertions, 3 deletions
@@ -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> @@ -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> @@ -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) | \ |