aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS5
-rw-r--r--ChangeLog.rst6
-rw-r--r--configure.ac2
-rw-r--r--lib/Makefile.am2
-rw-r--r--meson.build2
5 files changed, 11 insertions, 6 deletions
diff --git a/AUTHORS b/AUTHORS
index 2fe82eb..d73fa69 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -22,6 +22,8 @@ Anatol Pomozov <anatol.pomozov@gmail.com>
Angelo G. Del Regno <kholk11@gmail.com>
Antonio SJ Musumeci <trapexit@spawn.link>
Arunav Sanyal <Khalian@users.noreply.github.com>
+Banglang <banglang.huang@foxmail.com>
+Baptiste Daroussin <bapt@FreeBSD.org>
bobrofon <ifbossfor@ya.ru>
Brian Naylor <bnaylor@netapp.com>
Carlos Maiolino <cmaiolino-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@@ -42,6 +44,7 @@ Eric Wong <normalperson@yhbt.net>
Fabrice Bauzac <fbauzac@amadeus.com>
Feng Shuo <steve.shuo.feng@gmail.com>
guraga <rulumasi@dodsi.com>
+Heiko Becker <heirecka@exherbo.org>
Hendrik Brueckner <brueckner@linux.vnet.ibm.com>
Ikey Doherty <michael.i.doherty@intel.com>
itsdeepak <deepak.sn@samsung.com>
@@ -49,7 +52,9 @@ Jan Blumschein <jan@jan-blumschein.de>
Jay Hankins <jay-hankins@users.noreply.github.com>
Joachim Schiele <joachim.schiele@daimler.com>
Joachim Schiele <js@lastlog.de>
+Joe Dodge <joseph.dodge@veritas.com>
John Muir <john@jmuir.com>
+Joseph Dodge <joseph.dodge@veritas.com>
Laszlo Papp <ext-laszlo.papp@nokia.com>
Madan Valluri <mvalluri@cumulus-systems.com>
Mark Glines <mark@glines.org>
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 2640aa9..3531761 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,5 +1,5 @@
-Unreleased Changes
-==================
+libfuse 3.1.1 (2017-08-06)
+==========================
* Documentation: clarified how filesystems are supposed to process
open() and create() flags (see include/fuse_lowlevel.h).
@@ -13,7 +13,7 @@ Unreleased Changes
* Fixed a symbol versioning problem that resulted in very strange
failures (segfaults, unexpected behavior) in different situations.
-* Fixed a test failure when /tmp is on btrfs.
+* Fixed a test failure when /tmp is on btrfs.
* Incorporated several patches from the FreeBSD port. libfuse should
now compile under FreeBSD without the need for patches.
diff --git a/configure.ac b/configure.ac
index 894dd85..820b80b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(fuse, 3.1.0)
+AC_INIT(fuse, 3.1.1)
AC_PREREQ(2.59d)
AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_TARGET
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 5631f75..7d1dfff 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -33,7 +33,7 @@ libfuse3_la_SOURCES = \
$(iconv_source) \
$(mount_source)
-libfuse3_la_LDFLAGS = -pthread @libfuse_libs@ -version-number 3:1:0 \
+libfuse3_la_LDFLAGS = -pthread @libfuse_libs@ -version-number 3:1:1 \
-Wl,--version-script,$(srcdir)/fuse_versionscript
if NETBSD
diff --git a/meson.build b/meson.build
index 9f39f1d..ad3b496 100644
--- a/meson.build
+++ b/meson.build
@@ -1,4 +1,4 @@
-project('libfuse3', 'c', version: '3.1.0',
+project('libfuse3', 'c', version: '3.1.1',
meson_version: '>= 0.38',
default_options: [ 'buildtype=plain' ])