Skip to content

Commit 8be336f

Browse files
committed
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)
1 parent 7c3abfb commit 8be336f

File tree

5 files changed

+38
-3
lines changed

5 files changed

+38
-3
lines changed

.mailmap

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ David Carlier <[email protected]>
1919
Devchandra Meetei Leishangthem <[email protected]>
2020
2121
Frank Denis <[email protected]>
22+
2223
2324
Isaac Z. Schlueter <[email protected]>
2425
Jason Williams <[email protected]>

AUTHORS

+3
Original file line numberDiff line numberDiff line change
@@ -585,3 +585,6 @@ Ian Butterworth <[email protected]>
585585
Zuohui Yang <[email protected]>
586586
Edigleysson Silva (Edy) <[email protected]>
587587
Raihaan Shouhell <[email protected]>
588+
589+
590+
Poul T Lomholt <[email protected]>

ChangeLog

+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
2024.10.11, Version 1.49.1 (Stable)
2+
3+
Changes since version 1.49.0:
4+
5+
* build: add darwin-syscalls.h to release tarball (Ben Noordhuis)
6+
7+
* linux: use IORING_SETUP_NO_SQARRAY when available (Ben Noordhuis)
8+
9+
* linux: use IORING_OP_FTRUNCATE when available (Ben Noordhuis)
10+
11+
* win: fix pNtQueryDirectoryFile check (Rialbat)
12+
13+
* win: fix WriteFile() error translation (Santiago Gimeno)
14+
15+
* win,fs: uv_fs_rmdir() to return ENOENT on file (Santiago Gimeno)
16+
17+
* win,pipe: ipc code does not support async read (Jameson Nash)
18+
19+
* netbsd: fix build (Adam)
20+
21+
* win,fs: fix bug in fs__readdir (Hüseyin Açacak)
22+
23+
* unix: workaround gcc bug on armv7 (Santiago Gimeno)
24+
25+
* unix: work around arm-linux-gnueabihf-gcc bug (Ben Noordhuis)
26+
27+
* unix: fix uv_tcp_keepalive in smartOS (Santiago Gimeno)
28+
29+
* unix: fix uv_getrusage ru_maxrss on solaris (Poul T Lomholt)
30+
31+
132
2024.09.25, Version 1.49.0 (Stable), d2e56a5e8d3e39947b78405ca6e4727c70f5568a
233

334
Changes since version 1.48.0:

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1414

1515
AC_PREREQ(2.57)
16-
AC_INIT([libuv], [1.49.1-dev], [https://github.com/libuv/libuv/issues])
16+
AC_INIT([libuv], [1.49.1], [https://github.com/libuv/libuv/issues])
1717
AC_CONFIG_MACRO_DIR([m4])
1818
m4_include([m4/libuv-extra-automake-flags.m4])
1919
m4_include([m4/as_case.m4])

include/uv/version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
#define UV_VERSION_MAJOR 1
3434
#define UV_VERSION_MINOR 49
3535
#define UV_VERSION_PATCH 1
36-
#define UV_VERSION_IS_RELEASE 0
37-
#define UV_VERSION_SUFFIX "dev"
36+
#define UV_VERSION_IS_RELEASE 1
37+
#define UV_VERSION_SUFFIX ""
3838

3939
#define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \
4040
(UV_VERSION_MINOR << 8) | \

0 commit comments

Comments
 (0)