From 65295b01efc2a4c1e5152aaf74a2044b0a2b22fb Mon Sep 17 00:00:00 2001 From: Nicolas Sebrecht Date: Tue, 26 Jul 2016 08:53:18 +0200 Subject: [PATCH] v7.0.1 Signed-off-by: Nicolas Sebrecht --- Changelog.md | 27 +++++++++++++++++++++++++++ offlineimap/__init__.py | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 3c71462..7a31afb 100644 --- a/Changelog.md +++ b/Changelog.md @@ -15,6 +15,33 @@ Note to mainainers: * The following excerpt is only usefull when rendered in the website. {:toc} +### OfflineIMAP v7.0.1 (2016-07-26) + +#### Notes + +This is a small stable release fixing all the reported regressions and issues +about v7.0.0. + +#### Authors + +- Nicolas Sebrecht (9) + +#### Fixes + +- sqlite: properly serialize operations on the databases. [Nicolas Sebrecht] +- IMAP/IMAP: fix import issue about UIDMaps. [Nicolas Sebrecht] +- offlineimap.conf: allow non-spaces in the account list. [Nicolas Sebrecht] +- website-doc.sh: fix link in announces.yml. [Nicolas Sebrecht] +- release.sh: don't mess the mainline Changelog with commits in maint. [Nicolas Sebrecht] + +#### Changes + +- Improve error message when ssl_version must be set due to the tls_level. [Nicolas Sebrecht] +- Code cleanups. +- website-doc: order announces by date. [Nicolas Sebrecht] + + + ### OfflineIMAP v7.0.0 (2016-07-22) #### Notes diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index 3a22df6..8e66c2b 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.0" +__version__ = "7.0.1" __copyright__ = "Copyright 2002-2016 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "offlineimap-project@lists.alioth.debian.org"