aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--AUTHORS3
-rw-r--r--ChangeLog.rst8
-rw-r--r--meson.build2
3 files changed, 12 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index dc850c2..9f6ed90 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -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',