From ca1ce256ecb1d56f00c7342b121b6079b536ef0f Mon Sep 17 00:00:00 2001 From: Nicolas Sebrecht Date: Fri, 15 May 2015 15:20:18 +0200 Subject: [PATCH] v6.5.7 Signed-off-by: Nicolas Sebrecht --- Changelog.md | 43 +++++++++++++++++++++++++++++++++++++++++ offlineimap/__init__.py | 4 ++-- 2 files changed, 45 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index 91006b9..bda0b3d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -15,6 +15,49 @@ Note to mainainers: * The following excerpt is only usefull when rendered in the website. {:toc} + +### OfflineIMAP v6.5.7 (2015-05-15) + +#### Notes + +Almost no change since last release candidate. This is a sign that this release +is stable. ,-) + +There was big changes since previous stable and users - especially distribution +maintainers - should really read the intermediate changelogs. + +At the beginning of this year, I've tried to implement Unicode support. As you +know, I was not satisfied with the result. Then, I've published my code analysis +where I talk about doing a lot of refactoring for more proper OOP practices. +What's new is that I've actually done it and stopped this work as soon as I +realized that it means entirely rewriting the software. + +On top of this, I'm not fully satisfied with other current limitations: +- old legacy support; +- migration to Python 3; +- complex multithreading design; +- some restrictions of the GPLv2 license; +- etc. + +That's why I've started a new product. I'll publish it in the coming weeks under +the MIT license. + +#### Features + +- Better documentation for Windows users. +- contrib/release.sh (v0.2): fixes and improvements. + +#### Fixes + +- Report exceptions via exit code. +- Proxy feature leaks DNS support: offlineimap.conf talks about this. +- Email parsing for date coudn't work: fix datetuple dst check. + +#### Changes + +- Little code refactoring. + + ### OfflineIMAP v6.5.7-rc4 (2015-04-07) #### Notes diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index ee4b8e7..8b93c96 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -2,11 +2,11 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' __version__ = "6.5.7" -__revision__ = "-rc4" +__revision__ = "" __bigversion__ = __version__ + __revision__ __copyright__ = "Copyright 2002-2015 John Goerzen & contributors" __author__ = "John Goerzen" -__author_email__= "john@complete.org" +__author_email__= "offlineimap-project@lists.alioth.debian.org" __description__ = "Disconnected Universal IMAP Mail Synchronization/Reader Support" __license__ = "Licensed under the GNU GPL v2 or any later version (with an OpenSSL exception)" __bigcopyright__ = """%(__productname__)s %(__bigversion__)s