diff options
author | Bernd Schubert <bernd@bsbernd.com> | 2025-08-12 17:19:12 +0200 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-08-19 20:07:15 +0200 |
commit | ddcb1a075995500bd6c91327a1dfcee346acd075 (patch) | |
tree | 05a652f89a83afb86295e377c4f826da6610bb4b | |
parent | 8c8a62b1ef8b22641325ed8584d0e23e039ac42d (diff) | |
download | libfuse-ddcb1a075995500bd6c91327a1dfcee346acd075.tar.gz |
Release 3.17.4
Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
-rw-r--r-- | AUTHORS | 3 | ||||
-rw-r--r-- | ChangeLog.rst | 8 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 12 insertions, 1 deletions
@@ -278,3 +278,6 @@ Ben Dooks <ben.dooks@codethink.co.uk> # New authors since fuse-3.17.2 Long Li <leo.lilong@huawei.com> + +# New authors since fuse-3.17.3 +Georgi Valkov <gvalkov@gmail.com> diff --git a/ChangeLog.rst b/ChangeLog.rst index d07de32..730cb0f 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,3 +1,11 @@ +libfuse 3.17.4 (2025-08-19) +=========================== +- Try to detect mount-utils by checking for /run/mount/utab + and don't try to update mtab if it does not exist +- Fix a build warning when HAVE_BACKTRACE is undefined +- fuse_loop_mt.c: fix close-on-exec flag on clone fd +- Remove struct size assertions from fuse_common.h + libfuse 3.17.3 (2025-07-16) =========================== * more conn->want / conn->want_ext conversion fixes diff --git a/meson.build b/meson.build index 12a881e..f5834aa 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libfuse3', ['c'], - version: '3.17.3', + version: '3.17.4', meson_version: '>= 0.60.0', default_options: [ 'buildtype=debugoptimized', |