From 72de64034d991c5d77de2f2212a91237748a2c0f Mon Sep 17 00:00:00 2001 From: Paul Wise Date: Thu, 12 Oct 2023 16:14:44 +0800 Subject: [PATCH 1/3] notmuch-mutt: fix Perl syntax of hash index lookups Fixes: commit 239fdbbbf0cbd6cd6ebafb87e88cdb3cded75364 --- contrib/notmuch-mutt/notmuch-mutt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/notmuch-mutt/notmuch-mutt b/contrib/notmuch-mutt/notmuch-mutt index 1ac68065..b81252c8 100755 --- a/contrib/notmuch-mutt/notmuch-mutt +++ b/contrib/notmuch-mutt/notmuch-mutt @@ -67,7 +67,7 @@ sub check_search_cache_maildir($) { foreach my $d (@contents) { -l "$maildir/$d" and die_dir( $maildir, "contains symlink $d"); -d "$maildir/$d" or die_dir( $maildir, "contains non-directory $d"); - exists($required[$d]) or die_dir( $maildir, "contains directory $d"); + exists($required{$d}) or die_dir( $maildir, "contains directory $d"); } } From 4fc79eb196d4495a70a0e6eeeba247988f2be78d Mon Sep 17 00:00:00 2001 From: David Bremner Date: Thu, 12 Oct 2023 19:52:42 -0300 Subject: [PATCH 2/3] version: update to 0.38.1~rc1 --- bindings/python/notmuch/version.py | 2 +- version.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/python/notmuch/version.py b/bindings/python/notmuch/version.py index af97e6d1..e654ab7f 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.38.1~pre0' +__VERSION__ = '0.38.1~rc1' SOVERSION = '5' diff --git a/version.txt b/version.txt index cf30d88f..ba1bb575 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.38.1~pre0 +0.38.1~rc1 From 23ac959040557de3bb3ac4f07efa98ec5371beeb Mon Sep 17 00:00:00 2001 From: David Bremner Date: Thu, 12 Oct 2023 19:54:07 -0300 Subject: [PATCH 3/3] changelog for 0.38.1~rc1-1 --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index 799f50db..e9b1fec5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +notmuch (0.38.1~rc1-1) experimental; urgency=medium + + * New upstream release candidate + + -- David Bremner Thu, 12 Oct 2023 19:53:10 -0300 + notmuch (0.38.1~pre0-1) experimental; urgency=medium * New upstream release candidate