notmuch 0.12~rc2 release

-----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.11 (GNU/Linux)
 
 iJwEAAECAAYFAk9lxXUACgkQTiiN/0Um85nz8gP+PdsYdn6jyizOc1LYrWqeccQK
 La9HA5f+pdimEVTE1vRPwJT1Vz0saphiqCzRxNaYTtrFKQZ8Cz3z0pPs6/1mDAhD
 myGd9r5y566TNIxG2OlJHxxnmhoml1LNMLOHpj7ZMnNhrojKa0HmibtXlMR5ZN27
 tFP+UZn0c6Ad0JomezE=
 =IEn+
 -----END PGP SIGNATURE-----

Merge tag '0.12_rc2'

notmuch 0.12~rc2 release
This commit is contained in:
David Bremner 2012-03-18 08:36:33 -03:00
commit fc4e5248d2
18 changed files with 28 additions and 16 deletions

View file

@ -177,7 +177,7 @@ class Directory(object):
_destroy = nmlib.notmuch_directory_destroy
_destroy.argtypes = [NotmuchDirectoryP]
_destroy.argtypes = None
_destroy.restype = None
def __del__(self):
"""Close and free the Directory"""

View file

@ -172,7 +172,7 @@ class Threads(Python3StringMixIn):
_destroy = nmlib.notmuch_threads_destroy
_destroy.argtypes = [NotmuchThreadsP]
_destroy.argtypes = None
_destroy.restype = None
def __del__(self):
"""Close and free the notmuch Threads"""

View file

@ -1,2 +1,2 @@
# this file should be kept in sync with ../../../version
__VERSION__ = '0.12~rc1'
__VERSION__ = '0.12~rc2'

9
debian/changelog vendored
View file

@ -1,3 +1,12 @@
notmuch (0.12~rc2-1) experimental; urgency=low
* Upstream pre-release
* New bug fixes since ~rc1
- fix for uninitialized variable
- fix for python bindings type signatures
-- David Bremner <bremner@debian.org> Sun, 18 Mar 2012 08:10:35 -0300
notmuch (0.12~rc1-1) experimental; urgency=low
* Upstream pre-release.

View file

@ -1825,6 +1825,9 @@ notmuch_database_find_message_by_filename (notmuch_database_t *notmuch,
if (message_ret == NULL)
return NOTMUCH_STATUS_NULL_POINTER;
/* return NULL on any failure */
*message_ret = NULL;
local = talloc_new (notmuch);
try {

View file

@ -1,4 +1,4 @@
.TH NOTMUCH-CONFIG 1 2012-02-29 "Notmuch 0.12~rc1"
.TH NOTMUCH-CONFIG 1 2012-03-18 "Notmuch 0.12~rc2"
.SH NAME
notmuch-config \- Access notmuch configuration file.
.SH SYNOPSIS

View file

@ -1,4 +1,4 @@
.TH NOTMUCH-COUNT 1 2012-02-29 "Notmuch 0.12~rc1"
.TH NOTMUCH-COUNT 1 2012-03-18 "Notmuch 0.12~rc2"
.SH NAME
notmuch-count \- Count messages matching the given search terms.
.SH SYNOPSIS

View file

@ -1,4 +1,4 @@
.TH NOTMUCH-DUMP 1 2012-02-29 "Notmuch 0.12~rc1"
.TH NOTMUCH-DUMP 1 2012-03-18 "Notmuch 0.12~rc2"
.SH NAME
notmuch-dump \- Creates a plain-text dump of the tags of each message.

View file

@ -1,4 +1,4 @@
.TH NOTMUCH-NEW 1 2012-02-29 "Notmuch 0.12~rc1"
.TH NOTMUCH-NEW 1 2012-03-18 "Notmuch 0.12~rc2"
.SH NAME
notmuch-new \- Incorporate new mail into the notmuch database.
.SH SYNOPSIS

View file

@ -1,4 +1,4 @@
.TH NOTMUCH-REPLY 1 2012-02-29 "Notmuch 0.12~rc1"
.TH NOTMUCH-REPLY 1 2012-03-18 "Notmuch 0.12~rc2"
.SH NAME
notmuch-reply \- Constructs a reply template for a set of messages.

View file

@ -1,4 +1,4 @@
.TH NOTMUCH-RESTORE 1 2012-02-29 "Notmuch 0.12~rc1"
.TH NOTMUCH-RESTORE 1 2012-03-18 "Notmuch 0.12~rc2"
.SH NAME
notmuch-restore \- Restores the tags from the given file (see notmuch dump).

View file

@ -1,4 +1,4 @@
.TH NOTMUCH-SEARCH 1 2012-02-29 "Notmuch 0.12~rc1"
.TH NOTMUCH-SEARCH 1 2012-03-18 "Notmuch 0.12~rc2"
.SH NAME
notmuch-search \- Search for messages matching the given search terms.
.SH SYNOPSIS

View file

@ -1,4 +1,4 @@
.TH NOTMUCH-SHOW 1 2012-02-29 "Notmuch 0.12~rc1"
.TH NOTMUCH-SHOW 1 2012-03-18 "Notmuch 0.12~rc2"
.SH NAME
notmuch-show \- Show messages matching the given search terms.
.SH SYNOPSIS

View file

@ -1,4 +1,4 @@
.TH NOTMUCH-TAG 1 2012-02-29 "Notmuch 0.12~rc1"
.TH NOTMUCH-TAG 1 2012-03-18 "Notmuch 0.12~rc2"
.SH NAME
notmuch-tag \- Add/remove tags for all messages matching the search terms.

View file

@ -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-02-29 "Notmuch 0.12~rc1"
.TH NOTMUCH 1 2012-03-18 "Notmuch 0.12~rc2"
.SH NAME
notmuch \- thread-based email index, search, and tagging
.SH SYNOPSIS

View file

@ -1,4 +1,4 @@
.TH NOTMUCH-HOOKS 5 2012-02-29 "Notmuch 0.12~rc1"
.TH NOTMUCH-HOOKS 5 2012-03-18 "Notmuch 0.12~rc2"
.SH NAME
notmuch-hooks \- hooks for notmuch

View file

@ -1,4 +1,4 @@
.TH NOTMUCH-SEARCH-TERMS 7 2012-02-29 "Notmuch 0.12~rc1"
.TH NOTMUCH-SEARCH-TERMS 7 2012-03-18 "Notmuch 0.12~rc2"
.SH NAME
notmuch-search-terms \- Syntax for notmuch queries

View file

@ -1 +1 @@
0.12~rc1
0.12~rc2