Skip to content

Commit a56147d

Browse files
committed
Released 3.11.0
1 parent 96ad05c commit a56147d

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

AUTHORS

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Alex Richman <[email protected]>
3030
Amir Goldstein <[email protected]>
3131
3232
Anatol Pomozov <[email protected]>
33+
André Schröder <[email protected]>
3334
Andrew Gaul <[email protected]>
3435
Andrew Gaul <[email protected]>
3536
Angelo G. Del Regno <[email protected]>
@@ -42,6 +43,7 @@ AsumFace <[email protected]>
4243
4344
Baptiste Daroussin <[email protected]>
4445
Benjamin Barenblat <[email protected]>
46+
Bernd Schubert <[email protected]>
4547
Bill Zissimooulos <[email protected]>
4648
Bill Zissimopoulos <[email protected]>
4749
@@ -60,8 +62,11 @@ cvs2git <>
6062
Dalvik Khertel <[email protected]>
6163
Daniel Fullmer <[email protected]>
6264
Daniel Thau <[email protected]>
65+
David Galeano <[email protected]>
6366
David McNab <[email protected]>
6467
David Sheets <[email protected]>
68+
Dharmendra singh <[email protected]>
69+
Dharmendra Singh <[email protected]>
6570
divinity76 <[email protected]>
6671
6772
Dr. David Alan Gilbert <[email protected]>
@@ -80,6 +85,7 @@ ferivoz <[email protected]>
8085
8186
Florian Weimer <[email protected]>
8287
Forty-Bot <[email protected]>
88+
Frank Dinoff <[email protected]>
8389
Giulio Benetti <[email protected]>
8490
Giuseppe Scrivano <[email protected]>
8591
@@ -107,6 +113,7 @@ Junichi Uekawa <[email protected]>
107113
Junichi Uekawa <[email protected]>
108114
Junichi Uekawa <[email protected]>
109115
Kangjing "Chaser" Huang <[email protected]>
116+
Ken Schalk <[email protected]>
110117
Kevin Vigor <[email protected]>
111118
Kirill Smelkov <[email protected]>
112119
Laszlo Boszormenyi (GCS) <[email protected]>
@@ -115,7 +122,9 @@ Laurent Bigonville <[email protected]>
115122
Lilo Huang <[email protected]>
116123
117124
Li-Wen Hsu <[email protected]>
125+
lixiaokeng <[email protected]>
118126
lixiaokeng <[email protected]>
127+
Luis Henriques <[email protected]>
119128
Madan Valluri <[email protected]>
120129
Manuel Jacob <[email protected]>
121130
Marcin Sulikowski <[email protected]>
@@ -125,6 +134,7 @@ Martin Pärtel <[email protected]>
125134
Mateusz Urbańczyk <[email protected]>
126135
Mattias Nissler <[email protected]>
127136
137+
Maximilian Heinzler <[email protected]>
128138
Max Krasnyansky <[email protected]>
129139
Michael Forney <[email protected]>
130140
Michael Grigoriev <[email protected]>

ChangeLog.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
Unreleased Changes
2-
==================
1+
libfuse 3.11.0 (2022-05-02)
2+
===========================
33

44
* Add support for flag FOPEN_NOFLUSH for avoiding flush on close.
5-
65
* Fixed returning an error condition to ioctl(2)
76

7+
88
libfuse 3.10.5 (2021-09-06)
99
===========================
1010

1111
* Various improvements to make unit tests more robust.
12-
12+
1313

1414
libfuse 3.10.4 (2021-06-09)
1515
===========================

include/fuse_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#define FUSE_MAJOR_VERSION 3
2424

2525
/** Minor version of FUSE library interface */
26-
#define FUSE_MINOR_VERSION 10
26+
#define FUSE_MINOR_VERSION 11
2727

2828
#define FUSE_MAKE_VERSION(maj, min) ((maj) * 100 + (min))
2929
#define FUSE_VERSION FUSE_MAKE_VERSION(FUSE_MAJOR_VERSION, FUSE_MINOR_VERSION)

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project('libfuse3', ['c'], version: '3.10.5',
1+
project('libfuse3', ['c'], version: '3.11.0',
22
meson_version: '>= 0.42',
33
default_options: [
44
'buildtype=debugoptimized',

0 commit comments

Comments
 (0)