diff --git a/Changelog.md b/Changelog.md index 6510266..727abde 100644 --- a/Changelog.md +++ b/Changelog.md @@ -15,6 +15,34 @@ Note to mainainers: * The following excerpt is only usefull when rendered in the website. {:toc} +### OfflineIMAP v7.1.4 (2017-10-29) + +#### Notes + +Here is a bugfix release for v7.1.3. Two regressions got fixes and the +--delete-folder CLI option now expects an UTF-8 folder name when utf8foldernames +is enabled. + +This release was tested by: + +- Nicolas Sebrecht + +#### Authors + +- Nicolas Sebrecht (5) +- Thomas Merkel (1) + +#### Fixes + +- utf8foldernames: fix missing decode argument. [Nicolas Sebrecht] +- Fix: if any tunnel (preauth_tunnel or transport_tunnel) the hostname should not be required. [Thomas Merkel] + +#### Changes + +- utf8foldernames: support --delete-folder with UTF-8 folder name. [Nicolas Sebrecht] +- contrib/release.py improvements + + ### OfflineIMAP v7.1.3 (2017-10-08) #### Notes diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index a9c86da..29185bf 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.1.3" +__version__ = "7.1.4" __copyright__ = "Copyright 2002-2017 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "offlineimap-project@lists.alioth.debian.org"