diff options
| author | David Bremner <david@tethera.net> | 2018-10-12 21:01:06 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2018-10-12 21:01:06 -0300 |
| commit | 64bfe544fd695e30d030e0bf25daf4435c070fb2 (patch) | |
| tree | 7f0ed469b03b3b94f784b31f11c22c3f5bd3e595 | |
| parent | 329a8c7fcea634c197407eaa920765b757b0facb (diff) | |
| parent | 175f80c4c1826b7a77417bfbc804348988eb85d3 (diff) | |
Merge tag 'debian/0.28-2'
notmuch release 0.28-2 for unstable (sid) [dgit]
[dgit distro=debian]
| -rw-r--r-- | NEWS | 62 | ||||
| -rw-r--r-- | bindings/python/notmuch/version.py | 2 | ||||
| -rw-r--r-- | debian/changelog | 15 | ||||
| -rwxr-xr-x | debian/rules | 2 | ||||
| -rw-r--r-- | version | 2 |
5 files changed, 79 insertions, 4 deletions
@@ -1,6 +1,66 @@ -Notmuch 0.28 (UNRELEASED) +Notmuch 0.28 (2018-10-12) ========================= +General +------- + +Improve threading + + The threading algorithm has been updated to consider all references, + not just the heuristically chosen parent (e.g. when that parent is + not in the database). The heuristic for choosing a parent message + has also been updated to again consider the In-Reply-To header, if + it looks sensible. Re-indexing might be needed to take advantage of + the latter change. + +Handle mislabelled Windows-1252 parts + + Messages that contain Windows-1252 are apparently frequently + mislabelled as ISO 8859-1. Use GMime functionality to apply the + correct encoding for such messages. + +Command Line Interface +---------------------- + +Support relative database paths + + Database paths (i.e. parameters to `notmuch config set + database.path`) without a leading `/` are now interpreted relative + to $HOME of the invoking user. + +Emacs +----- + +Improve stderr handling + + Add a real sentinel process to clean up stderr buffer. This is + needed on e.g. macOS. + +Call `notmuch-mua-send-hook` hooks when sending a message + + This hook was documented, but not functional for a very long time. + +Completion +---------- + +The zsh completion has been updated to cover most of the notmuch +CLI. Internally it uses regexp searching, so needs at least Notmuch +0.24. + +Build System +------------ + +The build system now installs notmuch-mutt and notmuch-emacs-mua with +absolute shebangs, following the conventions of most Linux +distributions. + +Test Suite +---------- + +Fix certain tests that were failing with GMime 2.6. Users are reminded +that support for versions of GMime before 3.0.3 has been deprecated +since Notmuch 0.25. + Notmuch 0.27 (2018-06-13) ========================= diff --git a/bindings/python/notmuch/version.py b/bindings/python/notmuch/version.py index 110b75d4..6a513a25 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.28~rc0' +__VERSION__ = '0.28' SOVERSION = '5' diff --git a/debian/changelog b/debian/changelog index ccd4fb90..8f37ef3a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +notmuch (0.28-2) unstable; urgency=medium + + * Override location of bash, because /usr/bin/bash might exist + thanks to usrmerge. + + -- David Bremner <bremner@debian.org> Fri, 12 Oct 2018 20:54:00 -0300 + +notmuch (0.28-1) unstable; urgency=medium + + * New upstream releases. + * Includes threading fixes, support for relative database paths, and + rewritten zsh completion. + + -- David Bremner <bremner@debian.org> Fri, 12 Oct 2018 20:17:27 -0300 + notmuch (0.28~rc0-1) experimental; urgency=medium * New upstream release candidate. diff --git a/debian/rules b/debian/rules index 99d80785..c8ecb1ac 100755 --- a/debian/rules +++ b/debian/rules @@ -6,7 +6,7 @@ python3_all = py3versions -s | xargs -n1 | xargs -t -I {} env {} dh $@ --with python2,python3,elpa override_dh_auto_configure: - ./configure --prefix=/usr \ + BASH=/bin/bash ./configure --prefix=/usr \ --libdir=/usr/lib/$$(dpkg-architecture -q DEB_TARGET_MULTIARCH) \ --includedir=/usr/include \ --mandir=/usr/share/man \ @@ -1 +1 @@ -0.28~rc0 +0.28 |
