diff --git a/Changelog.draft.rst b/Changelog.draft.rst index 38a90b0..1fb8079 100644 --- a/Changelog.draft.rst +++ b/Changelog.draft.rst @@ -13,23 +13,9 @@ others. New Features ------------ -* Remove the old global locking system. We lock only the accounts that - we currently sync, so you can invoke OfflineImap multiple times now as - long as you sync different accounts. This system is compatible with - all releases >= 6.4.0, so don't run older releases simultanous to this - one. - Changes ------- -* Have console output go by default to STDOUT and not STDERR (regression - in 6.5.0) - Bug Fixes --------- -* Fixed MachineUI to urlencode() output lines again, rather than - outputting multi-line items. It's ugly as hell, but it had been that - way for years. - -* Fixed Maildir regression "flagmatchre" not found. (regressed in 6.5.0) diff --git a/Changelog.rst b/Changelog.rst index 21f9d42..5f04e2e 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -11,6 +11,25 @@ ChangeLog on releases. And because I'm lazy, it will also be used as a draft for the releases announces. + +OfflineIMAP v6.5.1 (2012-01-07) - "Quest for stability" +======================================================= + +* Fixed Maildir regression "flagmatchre" not found. (regressed in 6.5.0) + +* Have console output go by default to STDOUT and not STDERR (regression + in 6.5.0) + +* Fixed MachineUI to urlencode() output lines again, rather than + outputting multi-line items. It's ugly as hell, but it had been that + way for years. + +* Remove the old global locking system. We lock only the accounts that + we currently sync, so you can invoke OfflineImap multiple times now as + long as you sync different accounts. This system is compatible with + all releases >= 6.4.0, so don't run older releases simultanous to this + one. + OfflineIMAP v6.5.0 (2012-01-06) =============================== diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index b16a9d6..93cdb33 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -1,7 +1,7 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' -__version__ = "6.5.0" +__version__ = "6.5.1" __copyright__ = "Copyright 2002-2012 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "john@complete.org" @@ -9,7 +9,7 @@ __description__ = "Disconnected Universal IMAP Mail Synchronization/Reader Suppo __license__ = "Licensed under the GNU GPL v2+ (v2 or any later version)" __bigcopyright__ = """%(__productname__)s %(__version__)s %(__license__)s""" % locals() -__homepage__ = "http://github.com/nicolas33/offlineimap" +__homepage__ = "http://offlineimap.org" banner = __bigcopyright__