Release v6.4.2

This is a bugfix release over 6.4.1. Upgrading is recommended.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
This commit is contained in:
Sebastian Spaeth 2011-12-01 17:14:52 +01:00
parent 416b1fe551
commit 50e78a8d41
3 changed files with 13 additions and 10 deletions

View File

@ -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.

View File

@ -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)
===============================

View File

@ -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"