From 8bc2f35bf683f24448132b2f9738aaf809aff818 Mon Sep 17 00:00:00 2001 From: Eygene Ryabinkin Date: Fri, 4 Oct 2013 17:03:06 +0400 Subject: [PATCH] OfflineIMAP 6.5.5 is out Signed-off-by: Eygene Ryabinkin --- Changelog.rst | 23 ++++++++--------------- offlineimap/__init__.py | 2 +- 2 files changed, 9 insertions(+), 16 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index f74d073..db4eb24 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -4,8 +4,8 @@ ChangeLog :website: http://offlineimap.org -OfflineIMAP v6.5.5-rc3 (2013-09-20) -=================================== +OfflineIMAP v6.5.5 (2013-10-07) +=============================== * Avoid lockups for IMAP synchronizations running with the "-1" command-line switch (X-Ryl669 ) @@ -39,28 +39,21 @@ OfflineIMAP v6.5.5-rc3 (2013-09-20) * Fixed parsing of quoted strings in IMAP responses: strings like "\\" were treated as having \" as the escaped quote, rather than treating it as the quoted escaped backslash (GitHub#53). - -OfflineIMAP v6.5.5-rc2 (2012-09-05) -=================================== - * Execute pre/post-sync hooks during synchronizations toggled by IMAP IDLE message processing. (maxgerer@gmail.com) * Catch unsuccessful local mail uploads when IMAP server responds with "NO" status; that resulted in a loss of such local messages. (Adam Spiers) - -OfflineIMAP v6.5.5-rc1 (2012-09-05) -=================================== - * Don't create folders if readonly is enabled. -* Learn to deal with readonly folders to properly detect this condition and act - accordingly. One example is Gmail's "Chats" folder that is read-only, - but contains logs of the quick chats. (E. Ryabinkin) +* Learn to deal with readonly folders to properly detect this + condition and act accordingly. One example is Gmail's "Chats" + folder that is read-only, but contains logs of the quick chats. (E. + Ryabinkin) * Fix str.format() calls for Python 2.6 (D. Logie) * Remove APPENDUID hack, previously introduced to fix Gmail, no longer necessary, it might have been breaking things. (J. Wiegley) -* Improve regex that could lead to 'NoneType' object has no attribute 'group' - (D. Franke) +* Improve regex that could lead to 'NoneType' object has no attribute + 'group' (D. Franke) * Improved error throwing on repository misconfiguration OfflineIMAP v6.5.4 (2012-06-02) diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index 1814f7c..60c79a3 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -1,7 +1,7 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' -__version__ = "6.5.5-rc3" +__version__ = "6.5.5" __copyright__ = "Copyright 2002-2013 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "john@complete.org"