From 69838b81a5998bbdf473bde372f54b15220a7637 Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Fri, 6 Jan 2012 13:22:34 +0100 Subject: [PATCH] Release 6.4.4 This is a bugfix release that fixes regressions since 6.4.0. Signed-off-by: Sebastian Spaeth --- Changelog.draft.rst | 4 ---- Changelog.rst | 17 +++++++++++++++++ offlineimap/__init__.py | 2 +- 3 files changed, 18 insertions(+), 5 deletions(-) diff --git a/Changelog.draft.rst b/Changelog.draft.rst index 7842f51..76a0ea3 100644 --- a/Changelog.draft.rst +++ b/Changelog.draft.rst @@ -18,7 +18,3 @@ Changes Bug Fixes --------- - -* Fix the missing folder error that occured when a new remote folder was - detected (IMAP<->Maildir) - diff --git a/Changelog.rst b/Changelog.rst index b713c40..51bf175 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.4.4 (2012-01-06) +=============================== + +This is a bugfix release, fixing regressions occurring in or since 6.4.0. + +* Fix the missing folder error that occured when a new remote folder was + detected (IMAP<->Maildir) + +* Possibly fixed bug that prevented us from ever re-reading Maildir + folders, so flag changes and deletions were not detected when running + in a refresh loop. This is a regression that was introduced in about + 6.4.0. + +* Never mangle maildir file names when using nonstandard Maildir flags + (such as 'a'), note that they will still be deleted as they are not + supported in the sync to an IMAP server. + OfflineIMAP v6.4.3 (2012-01-04) =============================== diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index ea857e6..8406401 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -1,7 +1,7 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' -__version__ = "6.4.3" +__version__ = "6.4.4" __copyright__ = "Copyright 2002-2012 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "john@complete.org"