diff options
-rw-r--r-- | AUTHORS | 5 | ||||
-rw-r--r-- | ChangeLog.rst | 2 | ||||
-rw-r--r-- | include/fuse_common.h | 2 | ||||
-rw-r--r-- | meson.build | 2 |
4 files changed, 8 insertions, 3 deletions
@@ -16,6 +16,7 @@ Contributors CUSE has been written by Tejun Heo <teheo@suse.de>. Furthermore, the following people have contributed patches (autogenerated list): + 1c7718e7 <shirokovMartin@gmail.com> a1346054 <36859588+a1346054@users.noreply.github.com> admorgan <admorgan@morgancomputers.net> @@ -24,6 +25,7 @@ AKowshik <AKowshik@users.noreply.github.com> Alan Somers <asomers@gmail.com> Albert Chen <58009229+hselin-kalista-io@users.noreply.github.com> Albert Chen <hselin.chen@gmail.com> +Aleksandr Mikhailov <AM5800@users.noreply.github.com> Alexander <aleksandr.rvachev@eltex-co.ru> alex <devkral@web.de> Alex Richman <alex@richman.io> @@ -99,6 +101,7 @@ Hendrik Brueckner <brueckner@linux.vnet.ibm.com> HereThereBeDragons <HereThereBeDragons@users.noreply.github.com> Hookey <Hookey@users.noreply.github.com> human <human@neet.fi> +ikbenlike <ikbenlike@users.noreply.github.com> Ikey Doherty <michael.i.doherty@intel.com> itsdeepak <deepak.sn@samsung.com> Jan Blumschein <jan@jan-blumschein.de> @@ -182,6 +185,7 @@ Roman Bogorodskiy <bogorodskiy@gmail.com> Rosen Penev <rosenp@gmail.com> Rostislav <rostislav@users.noreply.github.com> Rostislav Skudnov <rostislav@tuxera.com> +Rudi Heitbaum <rudi@heitbaum.com> Sam Huffman <40582525+samh-sifive@users.noreply.github.com> Sam James <sam@gentoo.org> Sam Stuewe <halosghost@archlinux.info> @@ -209,6 +213,7 @@ Tomohiro Kusumi <kusumi.tomohiro@gmail.com> userwithuid <userwithuid@gmail.com> Valentin Plugaru <valentin.plugaru@uni.lu> Vivek Goyal <vgoyal@redhat.com> +Waldir Pimenta <waldyrious@gmail.com> wdlkmpx <wdlkmpx@gmail.com> William Woodruff <william@yossarian.net> Winfried Koehler <w_scan@gmx-topmail.de> diff --git a/ChangeLog.rst b/ChangeLog.rst index 1a3f2d4..698e2dc 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,4 +1,4 @@ -libfuse next.release.version (xxxx-xx-xx) +libfuse 3.16.1 (2023-08-08) =========================== * Readdir kernel cache can be enabled from high-level API. diff --git a/include/fuse_common.h b/include/fuse_common.h index 837df5a..381149a 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 15 +#define FUSE_MINOR_VERSION 16 #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 c42d591..b447055 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('libfuse3', ['c'], version: '3.15.1', +project('libfuse3', ['c'], version: '3.16.1', meson_version: '>= 0.51', default_options: [ 'buildtype=debugoptimized', |