diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2023-06-09 10:36:28 +0100 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2023-06-09 10:36:28 +0100 |
commit | 6d08472ea47db895748d5ca7d3daf032c3fefcf8 (patch) | |
tree | 88607bfb3fd49b241a7d4756fbefa16d79811d47 | |
parent | e0041ada71d923e5babe5f9a0df6da31a6dbd039 (diff) | |
download | libfuse-6d08472ea47db895748d5ca7d3daf032c3fefcf8.tar.gz |
Released 3.15.0
-rw-r--r-- | AUTHORS | 7 | ||||
-rw-r--r-- | ChangeLog.rst | 10 | ||||
-rw-r--r-- | include/fuse_common.h | 2 | ||||
-rw-r--r-- | meson.build | 2 |
4 files changed, 19 insertions, 2 deletions
@@ -138,6 +138,8 @@ Mark Glines <mark@glines.org> Martin Blanchard <tchaik@gmx.com> Martin Pärtel <martin.partel@gmail.com> Mateusz Urbańczyk <murbanczyk@qed.ai> +Matthias Goergens <matthias.goergens@gmail.com> +Matthias Görgens <matthias.goergens@gmail.com> Mattias Nissler <mnissler@chromium.org> maxice8 <30738253+maxice8@users.noreply.github.com> Maximilian Heinzler <m.heinzler@heinzler.de> @@ -158,6 +160,9 @@ Nozomi Miyamori <99280467+nm004@users.noreply.github.com> Oded Arbel <oded@geek.co.il> Olivier Blin <olivier.blin@softathome.com> pablomh <pablomh@gmail.com> +Pedro Kaj Kjellerup Nacht <pnacht@google.com> +Pedro Nacht <pnacht@google.com> +Peri <peri@srdi.org> Peter Lemenkov <lemenkov@gmail.com> philmd <philmd@users.noreply.github.com> Pierre Labastie <pierre.labastie@neuf.fr> @@ -204,10 +209,12 @@ Tomohiro Kusumi <kusumi.tomohiro@gmail.com> userwithuid <userwithuid@gmail.com> Valentin Plugaru <valentin.plugaru@uni.lu> Vivek Goyal <vgoyal@redhat.com> +wdlkmpx <wdlkmpx@gmail.com> William Woodruff <william@yossarian.net> Winfried Koehler <w_scan@gmx-topmail.de> winndows <winndows@163.com> Xiubo Li <xiubli@redhat.com> +Yaroslav Halchenko <debian@onerussian.com> y <tofik.sonono@intel.com> Yuri Per <yuri@acronis.com> Zhansong Gao <zhsgao@hotmail.com> 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', |