aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar David Bremner <bremner@debian.org>2012-03-18 08:36:33 -0300
committerGravatar David Bremner <bremner@debian.org>2012-03-18 08:36:33 -0300
commitfc4e5248d29cf7264481cbff82343eade5fcc2ca (patch)
tree9d5364587f18ee9705ebefec4be3ea4b4aeb9c6e
parent4d17a34286dc67fd434a9c8ca3518bf878ecf78b (diff)
parent9325cae5f46e543aedb790cfe62a4faabcba949c (diff)
Merge tag '0.12_rc2'
notmuch 0.12~rc2 release
-rw-r--r--bindings/python/notmuch/directory.py2
-rw-r--r--bindings/python/notmuch/threads.py2
-rw-r--r--bindings/python/notmuch/version.py2
-rw-r--r--debian/changelog9
-rw-r--r--lib/database.cc3
-rw-r--r--man/man1/notmuch-config.12
-rw-r--r--man/man1/notmuch-count.12
-rw-r--r--man/man1/notmuch-dump.12
-rw-r--r--man/man1/notmuch-new.12
-rw-r--r--man/man1/notmuch-reply.12
-rw-r--r--man/man1/notmuch-restore.12
-rw-r--r--man/man1/notmuch-search.12
-rw-r--r--man/man1/notmuch-show.12
-rw-r--r--man/man1/notmuch-tag.12
-rw-r--r--man/man1/notmuch.12
-rw-r--r--man/man5/notmuch-hooks.52
-rw-r--r--man/man7/notmuch-search-terms.72
-rw-r--r--version2
18 files changed, 28 insertions, 16 deletions
diff --git a/bindings/python/notmuch/directory.py b/bindings/python/notmuch/directory.py
index 0c5e015e..284cbdce 100644
--- a/bindings/python/notmuch/directory.py
+++ b/bindings/python/notmuch/directory.py
@@ -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"""
diff --git a/bindings/python/notmuch/threads.py b/bindings/python/notmuch/threads.py
index 690206ef..225f5246 100644
--- a/bindings/python/notmuch/threads.py
+++ b/bindings/python/notmuch/threads.py
@@ -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"""
diff --git a/bindings/python/notmuch/version.py b/bindings/python/notmuch/version.py
index e58a1b53..8f7eb87c 100644
--- a/bindings/python/notmuch/version.py
+++ b/bindings/python/notmuch/version.py
@@ -1,2 +1,2 @@
# this file should be kept in sync with ../../../version
-__VERSION__ = '0.12~rc1'
+__VERSION__ = '0.12~rc2'
diff --git a/debian/changelog b/debian/changelog
index 147ae368..9cf58ae7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -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.
diff --git a/lib/database.cc b/lib/database.cc
index 8f8df1a1..16c4354f 100644
--- a/lib/database.cc
+++ b/lib/database.cc
@@ -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 {
diff --git a/man/man1/notmuch-config.1 b/man/man1/notmuch-config.1
index d22988a7..a8c17d81 100644
--- a/man/man1/notmuch-config.1
+++ b/man/man1/notmuch-config.1
@@ -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
diff --git a/man/man1/notmuch-count.1 b/man/man1/notmuch-count.1
index f593065a..302a7fa7 100644
--- a/man/man1/notmuch-count.1
+++ b/man/man1/notmuch-count.1
@@ -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
diff --git a/man/man1/notmuch-dump.1 b/man/man1/notmuch-dump.1
index 4e24392c..7cfe08e1 100644
--- a/man/man1/notmuch-dump.1
+++ b/man/man1/notmuch-dump.1
@@ -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.
diff --git a/man/man1/notmuch-new.1 b/man/man1/notmuch-new.1
index 19cef3d7..1158bb28 100644
--- a/man/man1/notmuch-new.1
+++ b/man/man1/notmuch-new.1
@@ -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
diff --git a/man/man1/notmuch-reply.1 b/man/man1/notmuch-reply.1
index 0fb68b41..deb3ae1d 100644
--- a/man/man1/notmuch-reply.1
+++ b/man/man1/notmuch-reply.1
@@ -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.
diff --git a/man/man1/notmuch-restore.1 b/man/man1/notmuch-restore.1
index bcb765c1..333f4882 100644
--- a/man/man1/notmuch-restore.1
+++ b/man/man1/notmuch-restore.1
@@ -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).
diff --git a/man/man1/notmuch-search.1 b/man/man1/notmuch-search.1
index c62ad185..1b0c415f 100644
--- a/man/man1/notmuch-search.1
+++ b/man/man1/notmuch-search.1
@@ -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
diff --git a/man/man1/notmuch-show.1 b/man/man1/notmuch-show.1
index ebdd189f..7bf1d569 100644
--- a/man/man1/notmuch-show.1
+++ b/man/man1/notmuch-show.1
@@ -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
diff --git a/man/man1/notmuch-tag.1 b/man/man1/notmuch-tag.1
index 9f62222b..8a010e4d 100644
--- a/man/man1/notmuch-tag.1
+++ b/man/man1/notmuch-tag.1
@@ -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.
diff --git a/man/man1/notmuch.1 b/man/man1/notmuch.1
index 6fd20e0f..3984314c 100644
--- a/man/man1/notmuch.1
+++ b/man/man1/notmuch.1
@@ -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
diff --git a/man/man5/notmuch-hooks.5 b/man/man5/notmuch-hooks.5
index ab40443d..2397c7e3 100644
--- a/man/man5/notmuch-hooks.5
+++ b/man/man5/notmuch-hooks.5
@@ -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
diff --git a/man/man7/notmuch-search-terms.7 b/man/man7/notmuch-search-terms.7
index 1d430429..a2dde704 100644
--- a/man/man7/notmuch-search-terms.7
+++ b/man/man7/notmuch-search-terms.7
@@ -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
diff --git a/version b/version
index 0d4c53f1..d8850353 100644
--- a/version
+++ b/version
@@ -1 +1 @@
-0.12~rc1
+0.12~rc2