Released 3.10.0

This commit is contained in:
Nikolaus Rath 2020-10-09 10:47:25 +01:00
parent f54eb86e9a
commit 0105e061b9
4 changed files with 10 additions and 5 deletions

View File

@ -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>

View File

@ -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)
==========================

View File

@ -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

View File

@ -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' ])