mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 20:08:10 +01:00
notmuch 0.28.2 release
-----BEGIN PGP SIGNATURE----- iQGzBAABCAAdFiEE3VS2dnyDRXKVCQCp8gKXHaSnniwFAlxpUdkACgkQ8gKXHaSn nixjlAv+NZY5KFuC0jdI29AQrQKfWf45y/IJn3LKvOqWbTthSFxg/4ILRMVnWP62 +MspiPL+BIFuEvNQNiYUQOJjCMQX+4/CkbBowCC8KXKOEKrgYOVAR3RS8JDxD1WH j5pjB1JQso9ZQkqeGr33LrRq18vVjv0VjixYHKOdSgrRUyP0FByi2UdMPJgnC9iK 1yOK08jSSeMqU5zI092K1vHJNCUypw7YAXn96BReSqgFyHe7ri1N2HOhhtxS+L/5 26ju3uKAiYntS+DxVyypFhz5aOCmto0A07KF8boyCB8QPf01WblXGnetHZaZx6SS bdE7YoJ/wHiw48L0JPLACDzZM6vYCWMBzUcEFm2/CDJsDf/u+SyRqVWo/kPQT1QG 4hvWWXv2Jwc5YOid9zXhdEyQFdwYzFLuccKLdSPBq1ZriWITIkyFGF/2VZT1nysP AYOKGBLDr7bT3l6E/LVZbqvPwuelcgdtR9WJKaixS6GmlPIRkcB5wepbnVN0vIvq brUyul6Z =+mAW -----END PGP SIGNATURE----- Merge tag '0.28.2' notmuch 0.28.2 release
This commit is contained in:
commit
c09aad4794
7 changed files with 26 additions and 15 deletions
14
NEWS
14
NEWS
|
@ -7,6 +7,20 @@ Command Line Interface
|
|||
`notmuch show` now supports --body=false and --include-html with
|
||||
--format=text
|
||||
|
||||
Notmuch 0.28.2 (2019-02-17)
|
||||
===========================
|
||||
|
||||
Emacs
|
||||
-----
|
||||
|
||||
Invoke gpg with --batch and --no-tty.
|
||||
|
||||
Python Bindings
|
||||
---------------
|
||||
|
||||
Fix documentation build with Python 3.7. Note that Python >= 3.3 is
|
||||
now needed to build this documentation.
|
||||
|
||||
Notmuch 0.28.1 (2019-02-01)
|
||||
===========================
|
||||
|
||||
|
|
|
@ -13,22 +13,13 @@
|
|||
|
||||
import sys, os
|
||||
|
||||
from unittest.mock import Mock
|
||||
|
||||
# If extensions (or modules to document with autodoc) are in another directory,
|
||||
# add these directories to sys.path here. If the directory is relative to the
|
||||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
||||
sys.path.insert(0,os.path.abspath('../..'))
|
||||
|
||||
class Mock(object):
|
||||
def __init__(self, *args, **kwargs):
|
||||
pass
|
||||
|
||||
def __call__(self, *args, **kwargs):
|
||||
return Mock()
|
||||
|
||||
@classmethod
|
||||
def __getattr__(self, name):
|
||||
return Mock() if name not in ('__file__', '__path__') else '/dev/null'
|
||||
|
||||
MOCK_MODULES = [
|
||||
'ctypes',
|
||||
]
|
||||
|
|
|
@ -15,7 +15,7 @@ Files and directories
|
|||
instead.
|
||||
|
||||
:class:`Directory` -- A directory entry in the database
|
||||
------------------------------------------------------
|
||||
-------------------------------------------------------
|
||||
|
||||
.. autoclass:: Directory
|
||||
|
||||
|
|
|
@ -11,4 +11,4 @@
|
|||
iterator and broke list(Threads()). Use `len(list(msgs))`
|
||||
instead.
|
||||
|
||||
.. automethod:: __str__
|
||||
.. automethod:: __str__
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
# this file should be kept in sync with ../../../version
|
||||
__VERSION__ = '0.28.1'
|
||||
__VERSION__ = '0.28.2'
|
||||
SOVERSION = '5'
|
||||
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,3 +1,9 @@
|
|||
notmuch (0.28.2-1) unstable; urgency=medium
|
||||
|
||||
* [notmuch-emacs] Invoke gpg from with --batch and --no-tty
|
||||
|
||||
-- David Bremner <bremner@debian.org> Sun, 17 Feb 2019 07:30:33 -0400
|
||||
|
||||
notmuch (0.28.1-1) unstable; urgency=medium
|
||||
|
||||
* New upstream bug fix release
|
||||
|
|
2
version
2
version
|
@ -1 +1 @@
|
|||
0.28.1
|
||||
0.28.2
|
||||
|
|
Loading…
Reference in a new issue