From 6d08472ea47db895748d5ca7d3daf032c3fefcf8 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Fri, 9 Jun 2023 10:36:28 +0100 Subject: [PATCH] Released 3.15.0 --- AUTHORS | 7 +++++++ ChangeLog.rst | 10 ++++++++++ include/fuse_common.h | 2 +- meson.build | 2 +- 4 files changed, 19 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 9463d65..95ee068 100644 --- a/AUTHORS +++ b/AUTHORS @@ -138,6 +138,8 @@ Mark Glines Martin Blanchard Martin Pärtel Mateusz Urbańczyk +Matthias Goergens +Matthias Görgens Mattias Nissler maxice8 <30738253+maxice8@users.noreply.github.com> Maximilian Heinzler @@ -158,6 +160,9 @@ Nozomi Miyamori <99280467+nm004@users.noreply.github.com> Oded Arbel Olivier Blin pablomh +Pedro Kaj Kjellerup Nacht +Pedro Nacht +Peri Peter Lemenkov philmd Pierre Labastie @@ -204,10 +209,12 @@ Tomohiro Kusumi userwithuid Valentin Plugaru Vivek Goyal +wdlkmpx William Woodruff Winfried Koehler winndows Xiubo Li +Yaroslav Halchenko y Yuri Per Zhansong Gao diff --git a/ChangeLog.rst b/ChangeLog.rst index 0b85567..f193806 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,3 +1,13 @@ +libfuse 3.15.0 (2023-06-09) +=========================== + +* Improved support for some less common systems (32 bit, alternative libcs) + +* Unsupported mount options are no longer silently accepted. + +* auto_unmount is now compatible with allow_other. + + libfuse 3.14.1 (2023-03-26) =========================== diff --git a/include/fuse_common.h b/include/fuse_common.h index f63b22a..3a1e1f8 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -29,7 +29,7 @@ #define FUSE_MAJOR_VERSION 3 /** Minor version of FUSE library interface */ -#define FUSE_MINOR_VERSION 14 +#define FUSE_MINOR_VERSION 15 #define FUSE_MAKE_VERSION(maj, min) ((maj) * 100 + (min)) #define FUSE_VERSION FUSE_MAKE_VERSION(FUSE_MAJOR_VERSION, FUSE_MINOR_VERSION) diff --git a/meson.build b/meson.build index 288e7fc..7aa4e0d 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('libfuse3', ['c'], version: '3.14.1', +project('libfuse3', ['c'], version: '3.15.0', meson_version: '>= 0.51', default_options: [ 'buildtype=debugoptimized', -- 2.30.2