summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2022-05-02 10:11:41 +0100
committerNikolaus Rath <Nikolaus@rath.org>2022-05-02 10:11:41 +0100
commita56147d3cb269d64635408ab5588ad66eba43943 (patch)
tree2f112fdf132313953ecf4647e39306bfe7596cde
parent96ad05c8e12bae3c53401d4a856c168ef6c04345 (diff)
downloadfuse-a56147d3cb269d64635408ab5588ad66eba43943.tar.gz
Released 3.11.0fuse-3.11.0
-rw-r--r--AUTHORS10
-rw-r--r--ChangeLog.rst8
-rw-r--r--include/fuse_common.h2
-rw-r--r--meson.build2
4 files changed, 16 insertions, 6 deletions
diff --git a/AUTHORS b/AUTHORS
index 050d953..a708165 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -30,6 +30,7 @@ Alex Richman <alex@richman.io>
Amir Goldstein <amir73il@gmail.com>
amosonn <amosonn@gmail.com>
Anatol Pomozov <anatol.pomozov@gmail.com>
+André Schröder <andre.schroeder@andresco.de>
Andrew Gaul <andrew@gaul.org>
Andrew Gaul <gaul@google.com>
Angelo G. Del Regno <kholk11@gmail.com>
@@ -42,6 +43,7 @@ AsumFace <asumface@gmail.com>
Banglang <banglang.huang@foxmail.com>
Baptiste Daroussin <bapt@FreeBSD.org>
Benjamin Barenblat <bbaren@google.com>
+Bernd Schubert <bschubert@ddn.com>
Bill Zissimooulos <billziss@navimatics.com>
Bill Zissimopoulos <billziss@navimatics.com>
bobrofon <ifbossfor@ya.ru>
@@ -60,8 +62,11 @@ cvs2git <>
Dalvik Khertel <khertel@outlook.com>
Daniel Fullmer <danielrf12@gmail.com>
Daniel Thau <danthau@bedrocklinux.org>
+David Galeano <davidgaleano@gmail.com>
David McNab <david@rebirthing.co.nz>
David Sheets <sheets@alum.mit.edu>
+Dharmendra singh <dsingh@ddn.com>
+Dharmendra Singh <dsingh@ddn.com>
divinity76 <divinity76@gmail.com>
DrDaveD <2129743+DrDaveD@users.noreply.github.com>
Dr. David Alan Gilbert <dgilbert@redhat.com>
@@ -80,6 +85,7 @@ ferivoz <72023087+ferivoz@users.noreply.github.com>
Feverfew <Feverfew@users.noreply.github.com>
Florian Weimer <fw@deneb.enyo.de>
Forty-Bot <Forty-Bot@users.noreply.github.com>
+Frank Dinoff <fdinoff@google.com>
Giulio Benetti <giulio.benetti@benettiengineering.com>
Giuseppe Scrivano <giuseppe@scrivano.org>
guraga <rulumasi@dodsi.com>
@@ -107,6 +113,7 @@ Junichi Uekawa <dancer@debian.org>
Junichi Uekawa <dancerj@gmail.com>
Junichi Uekawa <dancer@netfort.gr.jp>
Kangjing "Chaser" Huang <huangkangjing@gmail.com>
+Ken Schalk <kcs-github@xorian.net>
Kevin Vigor <kvigor@fb.com>
Kirill Smelkov <kirr@nexedi.com>
Laszlo Boszormenyi (GCS) <gcs@debian.org>
@@ -115,7 +122,9 @@ Laurent Bigonville <bigon@users.noreply.github.com>
Lilo Huang <lilohuang@users.noreply.github.com>
Liu Bo <liub.liubo@gmail.com>
Li-Wen Hsu <lwhsu.github@lwhsu.org>
+lixiaokeng <63774002+lixiaokeng@users.noreply.github.com>
lixiaokeng <lixiaokeng@huawei.com>
+Luis Henriques <luis-henrix@users.noreply.github.com>
Madan Valluri <mvalluri@cumulus-systems.com>
Manuel Jacob <me@manueljacob.de>
Marcin Sulikowski <marcin.sulikowski@editshare.com>
@@ -125,6 +134,7 @@ Martin Pärtel <martin.partel@gmail.com>
Mateusz Urbańczyk <murbanczyk@qed.ai>
Mattias Nissler <mnissler@chromium.org>
maxice8 <30738253+maxice8@users.noreply.github.com>
+Maximilian Heinzler <m.heinzler@heinzler.de>
Max Krasnyansky <maxk@kernel.org>
Michael Forney <mforney@mforney.org>
Michael Grigoriev <mag@luminal.org>
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 3c3be1e..f4cb07c 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,15 +1,15 @@
-Unreleased Changes
-==================
+libfuse 3.11.0 (2022-05-02)
+===========================
* Add support for flag FOPEN_NOFLUSH for avoiding flush on close.
-
* Fixed returning an error condition to ioctl(2)
+
libfuse 3.10.5 (2021-09-06)
===========================
* Various improvements to make unit tests more robust.
-
+
libfuse 3.10.4 (2021-06-09)
===========================
diff --git a/include/fuse_common.h b/include/fuse_common.h
index d7481be..3f7260c 100644
--- a/include/fuse_common.h
+++ b/include/fuse_common.h
@@ -23,7 +23,7 @@
#define FUSE_MAJOR_VERSION 3
/** Minor version of FUSE library interface */
-#define FUSE_MINOR_VERSION 10
+#define FUSE_MINOR_VERSION 11
#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 8a6587b..342dee1 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project('libfuse3', ['c'], version: '3.10.5',
+project('libfuse3', ['c'], version: '3.11.0',
meson_version: '>= 0.42',
default_options: [
'buildtype=debugoptimized',