aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2023-08-08 11:15:03 +0100
committerNikolaus Rath <Nikolaus@rath.org>2023-08-08 11:15:03 +0100
commit1f0dfae4084577997291bb0e1b94aeff89a5e70f (patch)
tree2513ff256df6e78105ee1f4e5edafd43fc3bf4d3
parent0d830af6b8441b9fc52cf5e2c6f815b2cf178d8f (diff)
downloadlibfuse-1f0dfae4084577997291bb0e1b94aeff89a5e70f.tar.gz
Released fuse-3.16.1
-rw-r--r--AUTHORS5
-rw-r--r--ChangeLog.rst2
-rw-r--r--include/fuse_common.h2
-rw-r--r--meson.build2
4 files changed, 8 insertions, 3 deletions
diff --git a/AUTHORS b/AUTHORS
index 95ee068..b6b5253 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -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',