Merge branch 'release'

This commit is contained in:
David Bremner 2023-12-01 08:11:39 -04:00
commit b49377e509
5 changed files with 33 additions and 5 deletions

16
NEWS
View file

@ -1,3 +1,19 @@
Notmuch 0.38.2 (2023-12-01)
===========================
Library
-------
Make sorting of string maps lexicographic on (key,value) pairs. This
avoids some test failures due to variation in message property output
order.
Emacs
-----
Avoid extra separators after the last address in `notmuch-emacs-mua`.
Notmuch 0.38.1 (2023-10-26)
===========================

View file

@ -1,3 +1,3 @@
# this file should be kept in sync with ../../../version
__VERSION__ = '0.38.1'
__VERSION__ = '0.38.2'
SOVERSION = '5'

6
debian/changelog vendored
View file

@ -1,3 +1,9 @@
notmuch (0.38.2-1) unstable; urgency=medium
* New upstream bugfix release
-- David Bremner <bremner@debian.org> Fri, 01 Dec 2023 07:51:09 -0400
notmuch (0.38.1-1) unstable; urgency=medium
* New upstream bugfix release

View file

@ -41,6 +41,9 @@ CREATE_FRAME=
ELISP=
MAILTO=
HELLO=
TO_SEP=
CC_SEP=
BCC_SEP=
# Short options compatible with mutt(1).
while getopts :s:c:b:i:h opt; do
@ -86,13 +89,16 @@ while getopts :s:c:b:i:h opt; do
ELISP="${ELISP} (message-goto-subject) (insert \"${OPTARG}\")"
;;
--to)
ELISP="${ELISP} (message-goto-to) (insert \"${OPTARG}, \")"
ELISP="${ELISP} (message-goto-to) (insert \"${TO_SEP}${OPTARG}\")"
TO_SEP=", "
;;
--cc|c)
ELISP="${ELISP} (message-goto-cc) (insert \"${OPTARG}, \")"
ELISP="${ELISP} (message-goto-cc) (insert \"${CC_SEP}${OPTARG}\")"
CC_SEP=", "
;;
--bcc|b)
ELISP="${ELISP} (message-goto-bcc) (insert \"${OPTARG}, \")"
ELISP="${ELISP} (message-goto-bcc) (insert \"${BCC_SEP}${OPTARG}\")"
BCC_SEP=", "
;;
--body|i)
ELISP="${ELISP} (message-goto-body) (insert-file \"${OPTARG}\")"

View file

@ -1 +1 @@
0.38.1
0.38.2