Skip to content

Commit f0bb7e4

Browse files
committed
2023.06.30, Version 1.46.0 (Stable)
Changes since version 1.45.0: * Add SHA to ChangeLog (Santiago Gimeno) * misc: update readthedocs config (Jameson Nash) * test: remove erroneous RETURN_SKIP (Ben Noordhuis) * android: disable io_uring support (Ben Noordhuis) * linux: add some more iouring backed fs ops (Santiago Gimeno) * build: add autoconf option for disable-maintainer-mode (Jameson Nash) * fs: use WTF-8 on Windows (Stefan Karpinski) * unix,win: replace QUEUE with struct uv__queue (Ben Noordhuis) * linux: fs_read to use io_uring if iovcnt > IOV_MAX (Santiago Gimeno) * ios: fix uv_getrusage() ru_maxrss calculation (Ben Noordhuis) * include: update outdated code comment (Ben Noordhuis) * linux: support abstract unix sockets (Ben Noordhuis) * unix,win: add UV_PIPE_NO_TRUNCATE flag (Ben Noordhuis) * unix: add loongarch support (liuxiang88) * doc: add DPS8M to LINKS.md (Jeffrey H. Johnson) * include: add EUNATCH errno mapping (Abdirahim Musse) * src: don't run timers if loop is stopped/unref'd (Trevor Norris) * win: fix -Wpointer-to-int-cast warning (Ben Noordhuis) * test,win: fix -Wunused-variable warning (Ben Noordhuis) * test,win: fix -Wformat warning (Ben Noordhuis) * linux: work around io_uring IORING_OP_CLOSE bug (Ben Noordhuis) * win: remove unused functions (Ben Noordhuis) * bench: add bench to check uv_loop_alive (Trevor Norris) * test: add uv_cancel test for threadpool (Trevor Norris) * unix: skip prohibited syscalls on tvOS and watchOS (小明) * unix,fs: make no_pwritev access thread-safe (Santiago Gimeno) * unix: fix build for lower versions of Android (小明)
1 parent 7b43d70 commit f0bb7e4

File tree

4 files changed

+70
-5
lines changed

4 files changed

+70
-5
lines changed

AUTHORS

+6
Original file line numberDiff line numberDiff line change
@@ -542,3 +542,9 @@ Lewis Russell <[email protected]>
542542
sivadeilra <[email protected]>
543543
cui fliter <[email protected]>
544544
Mohammed Keyvanzadeh <[email protected]>
545+
Niklas Mischkulnig <[email protected]>
546+
Stefan Karpinski <[email protected]>
547+
liuxiang88 <[email protected]>
548+
Jeffrey H. Johnson <[email protected]>
549+
Abdirahim Musse <[email protected]>
550+

ChangeLog

+59
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,62 @@
1+
2023.06.30, Version 1.46.0 (Stable)
2+
3+
Changes since version 1.45.0:
4+
5+
* Add SHA to ChangeLog (Santiago Gimeno)
6+
7+
* misc: update readthedocs config (Jameson Nash)
8+
9+
* test: remove erroneous RETURN_SKIP (Ben Noordhuis)
10+
11+
* android: disable io_uring support (Ben Noordhuis)
12+
13+
* linux: add some more iouring backed fs ops (Santiago Gimeno)
14+
15+
* build: add autoconf option for disable-maintainer-mode (Jameson Nash)
16+
17+
* fs: use WTF-8 on Windows (Stefan Karpinski)
18+
19+
* unix,win: replace QUEUE with struct uv__queue (Ben Noordhuis)
20+
21+
* linux: fs_read to use io_uring if iovcnt > IOV_MAX (Santiago Gimeno)
22+
23+
* ios: fix uv_getrusage() ru_maxrss calculation (Ben Noordhuis)
24+
25+
* include: update outdated code comment (Ben Noordhuis)
26+
27+
* linux: support abstract unix sockets (Ben Noordhuis)
28+
29+
* unix,win: add UV_PIPE_NO_TRUNCATE flag (Ben Noordhuis)
30+
31+
* unix: add loongarch support (liuxiang88)
32+
33+
* doc: add DPS8M to LINKS.md (Jeffrey H. Johnson)
34+
35+
* include: add EUNATCH errno mapping (Abdirahim Musse)
36+
37+
* src: don't run timers if loop is stopped/unref'd (Trevor Norris)
38+
39+
* win: fix -Wpointer-to-int-cast warning (Ben Noordhuis)
40+
41+
* test,win: fix -Wunused-variable warning (Ben Noordhuis)
42+
43+
* test,win: fix -Wformat warning (Ben Noordhuis)
44+
45+
* linux: work around io_uring IORING_OP_CLOSE bug (Ben Noordhuis)
46+
47+
* win: remove unused functions (Ben Noordhuis)
48+
49+
* bench: add bench to check uv_loop_alive (Trevor Norris)
50+
51+
* test: add uv_cancel test for threadpool (Trevor Norris)
52+
53+
* unix: skip prohibited syscalls on tvOS and watchOS (小明)
54+
55+
* unix,fs: make no_pwritev access thread-safe (Santiago Gimeno)
56+
57+
* unix: fix build for lower versions of Android (小明)
58+
59+
160
2023.05.19, Version 1.45.0 (Stable), 96e05543f53b19d9642b4b0dd73b86ad3cea313e
261

362
Changes since version 1.44.2:

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.45.1-dev], [https://github.com/libuv/libuv/issues])
16+
AC_INIT([libuv], [1.46.0], [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

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
*/
3232

3333
#define UV_VERSION_MAJOR 1
34-
#define UV_VERSION_MINOR 45
35-
#define UV_VERSION_PATCH 1
36-
#define UV_VERSION_IS_RELEASE 0
37-
#define UV_VERSION_SUFFIX "dev"
34+
#define UV_VERSION_MINOR 46
35+
#define UV_VERSION_PATCH 0
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)