]> git.notmuchmail.org Git - notmuch/commitdiff
Merge branch 'release'
authorDavid Bremner <david@tethera.net>
Fri, 1 Dec 2023 12:11:39 +0000 (08:11 -0400)
committerDavid Bremner <david@tethera.net>
Fri, 1 Dec 2023 12:11:39 +0000 (08:11 -0400)
NEWS
bindings/python/notmuch/version.py
debian/changelog
emacs/notmuch-emacs-mua
version.txt

diff --git a/NEWS b/NEWS
index a7c67445479f8531c75f3dc5c90e5e1cf976ca6b..315f41360bd66038e461f0337d0062b56d2597f6 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -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)
 ===========================
 
index 1779d8cc3abc8d7d6ea3cbed4087e709cb1855f2..f4fd171d016706faf2af4d686221ab7688dab0a6 100644 (file)
@@ -1,3 +1,3 @@
 # this file should be kept in sync with ../../../version
-__VERSION__ = '0.38.1'
+__VERSION__ = '0.38.2'
 SOVERSION = '5'
index 1a333385126daa761ddee50d8ac485c5f7dee07d..75765b6f34dca442d0f42a73bfd6f31e9ed76649 100644 (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
index a521497784ec27e91cf9c7ee905641b3d4459012..254e6407cecefbbd8656321d9283cf63d360afca 100755 (executable)
@@ -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}\")"
index bb22182d4f72fd2a28c50b8ecfa5df74501dc431..f2e78d495a04faa6e6838ebbec69daf395772e43 100644 (file)
@@ -1 +1 @@
-0.38.1
+0.38.2