diff --git a/NEWS b/NEWS index 8125e09f..7d634621 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +Notmuch 0.23.5 (UNRELEASED) +=========================== + +Build system +------------ + +Fix quoting bug in configure. This had introduced a RUNPATH into the +notmuch binary in cases where it was not not needed. + Notmuch 0.23.4 (2016-12-24) =========================== diff --git a/bindings/python/notmuch/version.py b/bindings/python/notmuch/version.py index b5d308e2..1397fefd 100644 --- a/bindings/python/notmuch/version.py +++ b/bindings/python/notmuch/version.py @@ -1,3 +1,3 @@ # this file should be kept in sync with ../../../version -__VERSION__ = '0.23.4' +__VERSION__ = '0.23.5' SOVERSION = '4' diff --git a/configure b/configure index 72db26df..ddfbbabf 100755 --- a/configure +++ b/configure @@ -284,7 +284,7 @@ if [ -z "$LIBDIR" ] ; then libdir_expanded="${PREFIX}/lib" else # very non-general variable expansion - libdir_expanded=$(echo "$LIBDIR" | sed "s|\\${prefix}|${PREFIX}|g; s|\\$prefix/|${PREFIX}/|; s|//*|/|g") + libdir_expanded=$(printf %s "$LIBDIR" | sed "s|\${prefix}|${PREFIX}|; s|\$prefix\>|${PREFIX}|; s|//*|/|g") fi cat < Sun, 08 Jan 2017 08:31:03 -0400 + notmuch (0.23.4-1) unstable; urgency=medium * Improve error handling in notmuch insert diff --git a/doc/conf.py b/doc/conf.py index b6cfa1aa..a3d82696 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -12,7 +12,7 @@ master_doc = 'index' # General information about the project. project = u'notmuch' -copyright = u'2009-2016, Carl Worth and many others' +copyright = u'2009-2017, Carl Worth and many others' location = os.path.dirname(__file__) diff --git a/version b/version index 40a6dfed..f6de0017 100644 --- a/version +++ b/version @@ -1 +1 @@ -0.23.4 +0.23.5