diff --git a/Changelog.md b/Changelog.md index e5f1456..a0ace42 100644 --- a/Changelog.md +++ b/Changelog.md @@ -15,6 +15,36 @@ Note to mainainers: * The following excerpt is only usefull when rendered in the website. {:toc} +### OfflineIMAP v7.0.8 (2016-10-08) + +#### Notes + +Very small release to fix the broken UI relying on Curses. Thanks for the +contributors! + +#### Authors + +- Nicolas Sebrecht (4) +- Ilias Tsitsimpis (1) +- Stéphane Albert (1) + +#### Features + +- Introduce contrib/README.md. [Nicolas Sebrecht] + +#### Fixes + +- Import ui before threadutil to resolve circular dependency. [Ilias Tsitsimpis] +- Fix implicit call to unicode() from UI functions. [Stéphane Albert] + +#### Changes + +- imapserver: minor code cleaning: reorder methods. [Nicolas Sebrecht] +- website-doc.sh: print usage when no argument is given. [Nicolas Sebrecht] +- Changelog: add remark about singlethreadperfolder in the resume. [Nicolas Sebrecht] + + + ### OfflineIMAP v7.0.7 (2016-09-21) #### Notes diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index 83b5c16..dc27089 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.7" +__version__ = "7.0.8" __copyright__ = "Copyright 2002-2016 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "offlineimap-project@lists.alioth.debian.org"