From 50e78a8d41ea01c1f077438d9c2d6cf7367575b5 Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Thu, 1 Dec 2011 17:14:52 +0100 Subject: [PATCH] Release v6.4.2 This is a bugfix release over 6.4.1. Upgrading is recommended. Signed-off-by: Sebastian Spaeth --- Changelog.draft.rst | 9 --------- Changelog.rst | 12 ++++++++++++ offlineimap/__init__.py | 2 +- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/Changelog.draft.rst b/Changelog.draft.rst index 3261465..a9b7de4 100644 --- a/Changelog.draft.rst +++ b/Changelog.draft.rst @@ -31,12 +31,3 @@ Changes Bug Fixes --------- - -* IMAP<->IMAP sync with a readonly local IMAP repository failed with a - rather mysterious "TypeError: expected a character buffer object" - error. Fix this my retrieving the list of folders early enough even - for readonly repositories. - -* Fix regression from 6.4.0. When using local Maildirs with "/" as a - folder separator, all folder names would get a trailing slash - appended, which is plain wrong. diff --git a/Changelog.rst b/Changelog.rst index 7fe4d4b..f369aaa 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -11,6 +11,18 @@ ChangeLog on releases. And because I'm lazy, it will also be used as a draft for the releases announces. +OfflineIMAP v6.4.2 (2011-12-01) +=============================== + +* IMAP<->IMAP sync with a readonly local IMAP repository failed with a + rather mysterious "TypeError: expected a character buffer object" + error. Fix this my retrieving the list of folders early enough even + for readonly repositories. + +* Fix regression from 6.4.0. When using local Maildirs with "/" as a + folder separator, all folder names would get a trailing slash + appended, which is plain wrong. + OfflineIMAP v6.4.1 (2011-11-17) =============================== diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index 13a6f28..5e7b1c9 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -1,7 +1,7 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' -__version__ = "6.4.1" +__version__ = "6.4.2" __copyright__ = "Copyright 2002-2011 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "john@complete.org"