From fae48f309e67e96cb00d983a7651b5e047a6e009 Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Fri, 20 Jan 2012 11:10:42 +0100 Subject: [PATCH] Release 6.2.1-rc1 See Changelog.rst for details Signed-off-by: Sebastian Spaeth --- Changelog.draft.rst | 12 ------------ Changelog.rst | 17 +++++++++++++++++ offlineimap/__init__.py | 2 +- 3 files changed, 18 insertions(+), 13 deletions(-) diff --git a/Changelog.draft.rst b/Changelog.draft.rst index 9316218..76a0ea3 100644 --- a/Changelog.draft.rst +++ b/Changelog.draft.rst @@ -13,20 +13,8 @@ others. New Features ------------ -* Beginning of a test suite. So far there is only one test. Configure - test/credentials.conf and invoke with "python setup.py test" - -* Make folders containing quotes work rather than crashing - (reported by Mark Eichin) - Changes ------- -* Improve delete msg performance with SQLITE backend - Bug Fixes --------- - -* Fix python2.6 compatibility with the TTYUI backend (crash) -* Fix TTYUI regression from 6.5.2 in refresh loop (crash) -* Fix crashes related to UIDVALIDITY returning "None" diff --git a/Changelog.rst b/Changelog.rst index 53a8a0c..137fcbb 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -11,6 +11,23 @@ ChangeLog on releases. And because I'm lazy, it will also be used as a draft for the releases announces. +OfflineIMAP v6.5.2.1-rc1 (2012-01-20) +===================================== + +* Fix python2.6 compatibility with the TTYUI backend (crash) + +* Fix TTYUI regression from 6.5.2 in refresh loop (crash) + +* Fix crashes related to UIDVALIDITY returning "None" + +* Beginning of a test suite. So far there is only one test. Configure + test/credentials.conf and invoke with "python setup.py test" + +* Make folders containing quotes work rather than crashing + (reported by Mark Eichin) + +* Improve delete msg performance with SQLITE backend + OfflineIMAP v6.5.2 (2012-01-17) =============================== diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index 6b7b404..ccdf898 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -1,7 +1,7 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' -__version__ = "6.5.2" +__version__ = "6.5.2.1-rc1" __copyright__ = "Copyright 2002-2012 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "john@complete.org"