mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
notmuch 0.13.2 release
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iJwEAAECAAYFAk/LdWUACgkQTiiN/0Um85mL8AP/UosXwRabmZT8WjsJ/tPT0N2s zIBguJM7jNwnODZ1kFuS5AjxslbsA3SVubWI1rB5CZwINoF0+f+zc1pHHjAjy61R XAbSIQsI+2XvnfvDFnLYzyZb6xUX/Q1vczoJ4o2ngLMW5+kkERWYN+T6Ee291c/D MTPvV4fuHxvnFAX+Oig= =DiJS -----END PGP SIGNATURE----- Merge tag '0.13.2' notmuch 0.13.2 release
This commit is contained in:
commit
5973881b77
17 changed files with 38 additions and 15 deletions
9
NEWS
9
NEWS
|
@ -1,3 +1,12 @@
|
|||
Notmuch 0.13.2 (2012-06-02)
|
||||
===========================
|
||||
|
||||
Bug-fix release
|
||||
---------------
|
||||
|
||||
Update contrib/notmuch-deliver for API changes in 0.13. This fixes a
|
||||
compilation error for this contrib package.
|
||||
|
||||
Notmuch 0.13.1 (2012-05-29)
|
||||
===========================
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
# this file should be kept in sync with ../../../version
|
||||
__VERSION__ = '0.13.1'
|
||||
__VERSION__ = '0.13.2'
|
||||
|
|
|
@ -359,6 +359,7 @@ main(int argc, char **argv)
|
|||
GOptionContext *ctx;
|
||||
GError *error = NULL;
|
||||
notmuch_database_t *db;
|
||||
notmuch_status_t status;
|
||||
|
||||
ctx = g_option_context_new("[FOLDER]");
|
||||
g_option_context_add_main_entries(ctx, options, PACKAGE);
|
||||
|
@ -429,7 +430,14 @@ main(int argc, char **argv)
|
|||
maildir = g_strdup(db_path);
|
||||
|
||||
g_debug("Opening notmuch database `%s'", db_path);
|
||||
db = notmuch_database_open(db_path, NOTMUCH_DATABASE_MODE_READ_WRITE);
|
||||
status = notmuch_database_open(db_path, NOTMUCH_DATABASE_MODE_READ_WRITE,
|
||||
&db);
|
||||
if (status) {
|
||||
g_critical("Failed to open database `%s': %s",
|
||||
db_path, notmuch_status_to_string(status));
|
||||
g_free(maildir);
|
||||
return EX_SOFTWARE;
|
||||
}
|
||||
g_free(db_path);
|
||||
if (db == NULL)
|
||||
return EX_SOFTWARE;
|
||||
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,3 +1,9 @@
|
|||
notmuch (0.13.2-1) unstable; urgency=low
|
||||
|
||||
* Upstream bugfix release. No changes to binary packages.
|
||||
|
||||
-- David Bremner <bremner@debian.org> Sat, 02 Jun 2012 18:16:01 -0300
|
||||
|
||||
notmuch (0.13.1-1) unstable; urgency=low
|
||||
|
||||
* Upstream bugfix release.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH NOTMUCH-CONFIG 1 2012-05-25 "Notmuch 0.13.1"
|
||||
.TH NOTMUCH-CONFIG 1 2012-06-01 "Notmuch 0.13.2"
|
||||
.SH NAME
|
||||
notmuch-config \- Access notmuch configuration file.
|
||||
.SH SYNOPSIS
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH NOTMUCH-COUNT 1 2012-05-25 "Notmuch 0.13.1"
|
||||
.TH NOTMUCH-COUNT 1 2012-06-01 "Notmuch 0.13.2"
|
||||
.SH NAME
|
||||
notmuch-count \- Count messages matching the given search terms.
|
||||
.SH SYNOPSIS
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH NOTMUCH-DUMP 1 2012-05-25 "Notmuch 0.13.1"
|
||||
.TH NOTMUCH-DUMP 1 2012-06-01 "Notmuch 0.13.2"
|
||||
.SH NAME
|
||||
notmuch-dump \- Creates a plain-text dump of the tags of each message.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH NOTMUCH-NEW 1 2012-05-25 "Notmuch 0.13.1"
|
||||
.TH NOTMUCH-NEW 1 2012-06-01 "Notmuch 0.13.2"
|
||||
.SH NAME
|
||||
notmuch-new \- Incorporate new mail into the notmuch database.
|
||||
.SH SYNOPSIS
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH NOTMUCH-REPLY 1 2012-05-25 "Notmuch 0.13.1"
|
||||
.TH NOTMUCH-REPLY 1 2012-06-01 "Notmuch 0.13.2"
|
||||
.SH NAME
|
||||
notmuch-reply \- Constructs a reply template for a set of messages.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH NOTMUCH-RESTORE 1 2012-05-25 "Notmuch 0.13.1"
|
||||
.TH NOTMUCH-RESTORE 1 2012-06-01 "Notmuch 0.13.2"
|
||||
.SH NAME
|
||||
notmuch-restore \- Restores the tags from the given file (see notmuch dump).
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH NOTMUCH-SEARCH 1 2012-05-25 "Notmuch 0.13.1"
|
||||
.TH NOTMUCH-SEARCH 1 2012-06-01 "Notmuch 0.13.2"
|
||||
.SH NAME
|
||||
notmuch-search \- Search for messages matching the given search terms.
|
||||
.SH SYNOPSIS
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH NOTMUCH-SHOW 1 2012-05-25 "Notmuch 0.13.1"
|
||||
.TH NOTMUCH-SHOW 1 2012-06-01 "Notmuch 0.13.2"
|
||||
.SH NAME
|
||||
notmuch-show \- Show messages matching the given search terms.
|
||||
.SH SYNOPSIS
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH NOTMUCH-TAG 1 2012-05-25 "Notmuch 0.13.1"
|
||||
.TH NOTMUCH-TAG 1 2012-06-01 "Notmuch 0.13.2"
|
||||
.SH NAME
|
||||
notmuch-tag \- Add/remove tags for all messages matching the search terms.
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
.\" along with this program. If not, see http://www.gnu.org/licenses/ .
|
||||
.\"
|
||||
.\" Author: Carl Worth <cworth@cworth.org>
|
||||
.TH NOTMUCH 1 2012-05-25 "Notmuch 0.13.1"
|
||||
.TH NOTMUCH 1 2012-06-01 "Notmuch 0.13.2"
|
||||
.SH NAME
|
||||
notmuch \- thread-based email index, search, and tagging
|
||||
.SH SYNOPSIS
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH NOTMUCH-HOOKS 5 2012-05-25 "Notmuch 0.13.1"
|
||||
.TH NOTMUCH-HOOKS 5 2012-06-01 "Notmuch 0.13.2"
|
||||
|
||||
.SH NAME
|
||||
notmuch-hooks \- hooks for notmuch
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH NOTMUCH-SEARCH-TERMS 7 2012-05-25 "Notmuch 0.13.1"
|
||||
.TH NOTMUCH-SEARCH-TERMS 7 2012-06-01 "Notmuch 0.13.2"
|
||||
|
||||
.SH NAME
|
||||
notmuch-search-terms \- Syntax for notmuch queries
|
||||
|
|
2
version
2
version
|
@ -1 +1 @@
|
|||
0.13.1
|
||||
0.13.2
|
||||
|
|
Loading…
Reference in a new issue