diff options
-rw-r--r-- | AUTHORS | 4 | ||||
-rw-r--r-- | ChangeLog.rst | 14 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 15 insertions, 5 deletions
@@ -267,3 +267,7 @@ Zegang <zegang.luo@qq.com> # New authors since fuse-3.17.1-rc0 Maksim Harbachou <maksim.harbachou@resilio.com> Vassili Tchersky <vt+git@vbcy.org> + +# New authors since fuse-3.17.1-rc1 +jnr0006 <jacob.nick.riley@gmail.com> +Vassili Tchersky <vt+git@vbc.su> diff --git a/ChangeLog.rst b/ChangeLog.rst index 6b04148..6c157da 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,10 +1,16 @@ +libfuse 3.17.1 (2025-03-24) +=========================== +* fuse: Fix want conn.want flag conversion +* Prevent re-usage of stdio FDs for fusermount +* PanFS added to fusermount whitelist + libfuse 3.17.1-rc1 (2025-02-18) =============================== -- several BSD fixes -- x86 (32bit) build fixes -- nested declarations moved out of the inlined functions to avoid +* several BSD fixes +* x86 (32bit) build fixes +* nested declarations moved out of the inlined functions to avoid build warnings -- signify public key added for future 3.18 +* signify public key added for future 3.18 libfuse 3.17.1-rc0 (2025-02.10) =============================== diff --git a/meson.build b/meson.build index 1d961d0..494bb3d 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libfuse3', ['c'], - version: '3.17.1-rc1', # Version with RC suffix + version: '3.17.1', meson_version: '>= 0.51.0', default_options: [ 'buildtype=debugoptimized', |