diff --git a/AUTHORS b/AUTHORS index c89de97f..9dcc4091 100644 --- a/AUTHORS +++ b/AUTHORS @@ -21,6 +21,7 @@ Bill Zissimopoulos Chris Wolfe gala George Vlahavas +Jakub Jelen Julio Merino Julio Merino Mike Kelly @@ -30,4 +31,5 @@ Nikolaus Rath Percy Jahn Qais Patankar Rian Hunter +tpoindessous Zoltan Kuscsik diff --git a/ChangeLog.rst b/ChangeLog.rst index 5a34b47c..b1f7b794 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,5 +1,5 @@ -Unreleased Changes ------------------- +Release 3.0.0 (2017-07-08) +-------------------------- * sshfs now requires libfuse 3.1.0 or newer. * When supported by the kernel, sshfs now uses writeback caching. diff --git a/configure.ac b/configure.ac index 6b973f2d..c3e4b713 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT(sshfs, 2.9) +AC_INIT(sshfs, 3.0.0) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE([foreign subdir-objects]) AM_CONFIG_HEADER(config.h) @@ -17,7 +17,7 @@ case "$target_os" in esac export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH -PKG_CHECK_MODULES([SSHFS], [fuse >= 3.1 glib-2.0 gthread-2.0]) +PKG_CHECK_MODULES([SSHFS], [fuse3 >= 3.1 glib-2.0 gthread-2.0]) have_fuse_opt_parse=no oldlibs="$LIBS" LIBS="$LIBS $SSHFS_LIBS"