From 681e271fc09700d0baf892b5c37d50ba1523fa47 Mon Sep 17 00:00:00 2001 From: Nicolas Sebrecht Date: Sun, 29 Oct 2017 15:23:29 +0100 Subject: [PATCH] v7.1.4 Tested-by: Nicolas Sebrecht Signed-off-by: Nicolas Sebrecht --- Changelog.md | 28 ++++++++++++++++++++++++++++ offlineimap/__init__.py | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) 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"