From 679c491c56c981961e18aa43b31955900491d7a3 Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Tue, 3 Apr 2012 01:39:28 +0200 Subject: [PATCH] bugfix release v6.5.3.1 a single bugfix when no dry-run option was given in the config file. Signed-off-by: Sebastian Spaeth --- Changelog.rst | 3 +++ offlineimap/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Changelog.rst b/Changelog.rst index 53a9797..4e803b8 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -17,6 +17,9 @@ Changes Bug Fixes --------- +OfflineIMAP v6.5.3.1 (2012-04-03) +================================= + * Don't fail if no dry-run setting exists in offlineimap.conf (introduced in 6.5.3) diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index 5673a89..81dcbac 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -1,7 +1,7 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' -__version__ = "6.5.3" +__version__ = "6.5.3.1" __copyright__ = "Copyright 2002-2012 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "john@complete.org"