From 91f13e9b03afe19b884d6c4c80b139f3ed8a6f6c Mon Sep 17 00:00:00 2001 From: Nicolas Sebrecht Date: Tue, 2 Aug 2016 20:26:49 +0200 Subject: [PATCH] v7.0.4 Signed-off-by: Nicolas Sebrecht --- Changelog.md | 15 +++++++++++++++ offlineimap/__init__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 2616184..ec17b66 100644 --- a/Changelog.md +++ b/Changelog.md @@ -15,6 +15,21 @@ Note to mainainers: * The following excerpt is only usefull when rendered in the website. {:toc} +### OfflineIMAP v7.0.4 (2016-08-02) + +#### Notes + +Small bugfix release for Gmail users. + +#### Authors + +- Nicolas Sebrecht (1) + +#### Fixes + +- ConfigHelperMixin must be new-style class to not break inheritance. [Nicolas Sebrecht] + + ### OfflineIMAP v7.0.3 (2016-07-30) #### Notes diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index 21f934e..9ca5977 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.3" +__version__ = "7.0.4" __copyright__ = "Copyright 2002-2016 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "offlineimap-project@lists.alioth.debian.org"