From 17980baea61e15ade88186ee413757298ebc1249 Mon Sep 17 00:00:00 2001 From: Nicolas Sebrecht Date: Thu, 8 Jan 2015 12:28:36 +0100 Subject: [PATCH] v6.5.7-rc2 Signed-off-by: Nicolas Sebrecht --- Changelog.rst | 51 ++++++++++++++++++++++++++++++++++++++++- offlineimap/__init__.py | 2 +- 2 files changed, 51 insertions(+), 2 deletions(-) diff --git a/Changelog.rst b/Changelog.rst index 5580e69..1954dbc 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -5,13 +5,62 @@ ChangeLog :website: http://offlineimap.org +OfflineIMAP v6.5.7-rc2 (2015-01-18) +=================================== + +Notes +----- + +This release candidate should be minor for most users. + +The best points are about SSL not falling back on other authentication methods +when failing, better RAM footprint and reduced I/O access. + +Documentation had our attention, too. + +There's some code cleanups and code refactoring, as usual. + +Features +-------- + +* Do not keep reloading pyhtonfile, make it stateful. +* HACKING: how to create tags. +* MANUAL: add minor sample on how to retrieve a password with a helper python file. + +Fixes +----- + +* Make OS-default CA certificate file to be requested explicitely. +* SSL: do not fallback on other authentication mode if it fails. +* Fix regression introduced while style patching. +* API documentation: properly auto-document main class, fixes. +* ui: Machine: remove offending param for a _printData() call. +* Drop caches after having processed folders. + +Changes +------- + +* Fix unexpected garbage code. +* Properly re-raise exception to save original tracebacks. +* Refactoring: avoid redefining various Python keywords. +* Code: improvements of comments and more style consistency. +* Configuration file: better design and other small improvements. +* nametrans documentation: fix minor error. +* Unused import removal. +* Add a note about the incorrect rendering of the docstring with Sphinx. +* Errors handling: log the messages with level ERROR. +* MAINTAINERS: add mailing list maintainers. +* Fixed copyright statement. +* COPYING: fix unexpected characters. + + OfflineIMAP v6.5.7-rc1 (2015-01-07) =================================== Notes ----- -I think it's time for a new release candidate. Our release cycle are long +I think it's time for a new release candidate. Our release cycles are long enough and users are asked to use the current TIP of the next branch to test our recent patches. diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index ff6acd9..441af44 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -2,7 +2,7 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' __version__ = "6.5.7" -__revision__ = "-rc1" +__revision__ = "-rc2" __bigversion__ = __version__ + __revision__ __copyright__ = "Copyright 2002-2015 John Goerzen & contributors" __author__ = "John Goerzen"