diff --git a/Changelog.md b/Changelog.md index 3225533..bf4814e 100644 --- a/Changelog.md +++ b/Changelog.md @@ -15,6 +15,42 @@ Note to mainainers: * The following excerpt is only usefull when rendered in the website. {:toc} +### OfflineIMAP v7.0.13 (2017-01-27) + +#### Notes + +Here is a small release with some new features. IMAP servers are better supported. + +The release cycle was improved. Now, we include a new freeze time before +important releases. + +#### Authors + +- Nicolas Sebrecht (8) +- lkcl (2) +- Chris Smart (1) + +#### Features + +- init: register SIGABRT and handle as per SIGUSR2. [Chris Smart] +- add documentation about SIGABRT. [Nicolas Sebrecht] +- learn repository retrycount configuration option. [lkcl] +- learn authproxy configuration option. [lkcl] + +#### Fixes + +- folder: IMAP: add missing whitespace in error message. [Nicolas Sebrecht] +- repository: IMAP: correctly check the response while listing remote folders. [Nicolas Sebrecht] +- release.sh: correctly sort releases to compute latest stable and rc. [Nicolas Sebrecht] + +#### Changes + +- manual: KNOWN ISSUES: add documentation about the deletions. [Nicolas Sebrecht] +- folder: IMAP: improve error message when Dovecot returns any data for UID FETCH. [Nicolas Sebrecht] +- MAINTAINERS: add new official testers. [Nicolas Sebrecht] + + + ### OfflineIMAP v7.0.12 (2016-11-30) #### Notes diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index f10606f..797672d 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -2,7 +2,7 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' # Expecting trailing "-rcN" or "" for stable releases. -__version__ = "7.0.12" +__version__ = "7.0.13" __copyright__ = "Copyright 2002-2016 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "offlineimap-project@lists.alioth.debian.org"