Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Nicolas Sebrecht 2017-04-16 00:40:54 +02:00
parent 2c6fac6449
commit f669b3ea2f
2 changed files with 36 additions and 1 deletions

View File

@ -15,6 +15,41 @@ Note to mainainers:
* The following excerpt is only usefull when rendered in the website.
{:toc}
### OfflineIMAP v7.1.0 (2017-04-16)
#### Notes
The most important change is the removal of the status_backend configuration
option and that's why we're moving to v7.1.0.
There are other small bug fixes and improvements. However, the codebase didn't
change much since v7.0.14.
#### Authors
- Nicolas Sebrecht (6)
- benutzer193 (4)
- Ilias Tsitsimpis (1)
#### Fixes
- doc: Fix typo in offlineimap.1 man page. [Ilias Tsitsimpis]
- README: we moved to imaplib2 v2.57. [Nicolas Sebrecht]
- README: mark porting to py3 as stalled. [Nicolas Sebrecht]
- folder: UIDMaps: ignore KeyError failure while removing keys. [Nicolas Sebrecht]
#### Changes
- Remove support for the status_backend configuration option. [Nicolas Sebrecht]
- folder/IMAP: improve handling of "matchinguids" error while searching headers. [Nicolas Sebrecht]
- Adjust README to systemd service file changes. [benutzer193]
- Remove oneshot switch from systemd services. [benutzer193]
- Use oneshot services for systemd timers. [benutzer193]
- Create systemd oneshot services. [benutzer193]
- website-doc.sh: versions.yml: set versions in order. [Nicolas Sebrecht]
### OfflineIMAP v7.0.14 (2017-03-11)
#### Notes

View File

@ -2,7 +2,7 @@ __all__ = ['OfflineImap']
__productname__ = 'OfflineIMAP'
# Expecting trailing "-rcN" or "" for stable releases.
__version__ = "7.0.14"
__version__ = "7.1.0"
__copyright__ = "Copyright 2002-2017 John Goerzen & contributors"
__author__ = "John Goerzen"
__author_email__= "offlineimap-project@lists.alioth.debian.org"