summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2020-10-09 10:47:25 +0100
committerNikolaus Rath <Nikolaus@rath.org>2020-10-09 10:47:25 +0100
commit0105e061b97a97d9836128aea5bcdfc9593c9b82 (patch)
tree5b26ed5a34ba99e62a6332ee8021006e5a85b225
parentf54eb86e9a0b596dfeceb18277efa8f840d85919 (diff)
downloadfuse-3.10.0.tar.gz
Released 3.10.0fuse-3.10.0
-rw-r--r--AUTHORS4
-rw-r--r--ChangeLog.rst5
-rw-r--r--include/fuse_common.h4
-rw-r--r--meson.build2
4 files changed, 10 insertions, 5 deletions
diff --git a/AUTHORS b/AUTHORS
index 07dac77..239d66a 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -66,11 +66,13 @@ Emmanuel Dreyfus <manu@netbsd.org>
Enke Chen <enkechen@yahoo.com>
Eric Engestrom <eric@engestrom.ch>
Eric Wong <normalperson@yhbt.net>
+Etienne Dublé <etienne.duble@imag.fr>
Fabian Vogt <fabian@ritter-vogt.de>
Fabrice Bauzac <fbauzac@amadeus.com>
Fabrice Fontaine <fontaine.fabrice@gmail.com>
Fedor Korotkov <fedor.korotkov@gmail.com>
Feng Shuo <steve.shuo.feng@gmail.com>
+ferivoz <72023087+ferivoz@users.noreply.github.com>
Florian Weimer <fw@deneb.enyo.de>
Forty-Bot <Forty-Bot@users.noreply.github.com>
Giuseppe Scrivano <giuseppe@scrivano.org>
@@ -150,6 +152,8 @@ Tej Chajed <tchajed@mit.edu>
tenzap <46226844+tenzap@users.noreply.github.com>
therealneworld@gmail.com <therealneworld@gmail.com>
Tomasz Kulasek <34129113+tkulasek@users.noreply.github.com>
+Tom Callaway <spot@fedoraproject.org>
+Tom Callaway <spotrh@gmail.com>
Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
userwithuid <userwithuid@gmail.com>
Valentin Plugaru <valentin.plugaru@uni.lu>
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 4cb1478..8c1bcee 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,7 +1,8 @@
-Unreleased Changes
-==================
+libfuse 3.10.0 (2010-10-09)
+===========================
* Add FUSE_CAP_CACHE_SYMLINKS: allow caching symlinks in kernel page cache.
+* Various minor bugfixes and improvements.
libfuse 3.9.4 (2020-08-09)
==========================
diff --git a/include/fuse_common.h b/include/fuse_common.h
index f5bfb6a..ea4bdb0 100644
--- a/include/fuse_common.h
+++ b/include/fuse_common.h
@@ -23,9 +23,9 @@
#define FUSE_MAJOR_VERSION 3
/** Minor version of FUSE library interface */
-#define FUSE_MINOR_VERSION 9
+#define FUSE_MINOR_VERSION 10
-#define FUSE_MAKE_VERSION(maj, min) ((maj) * 10 + (min))
+#define FUSE_MAKE_VERSION(maj, min) ((maj) * 100 + (min))
#define FUSE_VERSION FUSE_MAKE_VERSION(FUSE_MAJOR_VERSION, FUSE_MINOR_VERSION)
#ifdef __cplusplus
diff --git a/meson.build b/meson.build
index e83d441..71ec6de 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project('libfuse3', ['c'], version: '3.9.3',
+project('libfuse3', ['c'], version: '3.10.0',
meson_version: '>= 0.42',
default_options: [ 'buildtype=debugoptimized' ])