From 8430ea5c9ec9c1502789583e371081875429052b Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Tue, 10 Mar 2020 00:49:26 +0100 Subject: [PATCH] release afew 3.0.0 --- NEWS.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/NEWS.md b/NEWS.md index bae89b6..2ca9813 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,29 @@ +afew 3.0.0 (2020-03-10) +======================= + +MailMover: many fixes + + Previously, MailMover didn't properly preserve flags when renaming files, and + moved all mail to `cur`. This was fixed. Also, MailMover gained a test suite. + +New filters: PropagateTags[ByRegex]InThreadFilter + + These filters allow propagating tags set to a message to the whole thread. + +New command line argument: --notmuch-args= in move mode + + In move mode, afew calls `notmuch new` after moving mails around. This + prevents `afew -m` from being used in a pre-new hook in `notmuch`. + + Now it's possible to specify notmuch args, so something like `afew -m + --notmuch-args=--no-hooks` can live happily in a pre-new hook. + +Python 3.4 and 3.5 support dropped + + afew stopped supporting the older python versions 3.4 and 3.5, and removed + some more Python 2 compatibility code. (`from __future__ import …`, utf-8 + headers, relative imports, …) + afew 2.0.0 (2019-06-16) =======================