diff --git a/Changelog.draft.rst b/Changelog.draft.rst index 8b9b8bd..76a0ea3 100644 --- a/Changelog.draft.rst +++ b/Changelog.draft.rst @@ -13,25 +13,8 @@ others. New Features ------------ -* add a --info command line switch that outputs useful information about - the server and the configuration for all enabled accounts. - Changes ------- -* Reworked logging which was reported to e.g. not flush output to files - often enough. User-visible changes: - a) console output goes to stderr (for now). - b) file output has timestamps and looks identical in the basic and - ttyui UIs. - c) File output should be flushed after logging by default (do - report if not). - -* Bumped bundled imaplib2 to release 2.29 - -* Make ctrl-c exit cleanly rather aborting brutally (which could leave - around temporary files, half-written cache files, etc). Exiting on - SIGTERM and CTRL-C can take a little longer, but will be clean. - Bug Fixes --------- diff --git a/Changelog.rst b/Changelog.rst index f369aaa..b713c40 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -11,6 +11,33 @@ ChangeLog on releases. And because I'm lazy, it will also be used as a draft for the releases announces. +OfflineIMAP v6.4.3 (2012-01-04) +=============================== + +New Features +------------ + +* add a --info command line switch that outputs useful information about + the server and the configuration for all enabled accounts. + +Changes +------- + +* Reworked logging which was reported to e.g. not flush output to files + often enough. User-visible changes: + a) console output goes to stderr (for now). + b) file output has timestamps and looks identical in the basic and + ttyui UIs. + c) File output should be flushed after logging by default (do + report if not). + +* Bumped bundled imaplib2 to release 2.29 + +* Make ctrl-c exit cleanly rather aborting brutally (which could leave + around temporary files, half-written cache files, etc). Exiting on + SIGTERM and CTRL-C can take a little longer, but will be clean. + + OfflineIMAP v6.4.2 (2011-12-01) =============================== diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index 5e7b1c9..ea857e6 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -1,8 +1,8 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' -__version__ = "6.4.2" -__copyright__ = "Copyright 2002-2011 John Goerzen & contributors" +__version__ = "6.4.3" +__copyright__ = "Copyright 2002-2012 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "john@complete.org" __description__ = "Disconnected Universal IMAP Mail Synchronization/Reader Support"