From 426905ba8517b9ce7e03a0b9d7c36bc9baedeafb Mon Sep 17 00:00:00 2001 From: Nicolas Sebrecht Date: Sun, 24 Jan 2016 19:47:14 +0100 Subject: [PATCH] v6.7.0-rc1 Signed-off-by: Nicolas Sebrecht --- Changelog.md | 32 ++++++++++++++++++++++++++++++++ offlineimap/__init__.py | 4 ++-- 2 files changed, 34 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index a2cad23..2e32c00 100644 --- a/Changelog.md +++ b/Changelog.md @@ -15,6 +15,38 @@ Note to mainainers: * The following excerpt is only usefull when rendered in the website. {:toc} + +### OfflineIMAP v6.7.0-rc1 (2016-01-24) + +#### Notes + +Starting a new cycle with all EXPERIMENTAL and TESTING stuff marked stable. +Otherwise, not much exciting yet. There's pending work that would need some +love by contributors: + +- https://github.com/OfflineIMAP/offlineimap/issues/211 +- https://github.com/OfflineIMAP/offlineimap/pull/111 +- https://github.com/OfflineIMAP/offlineimap/issues/184 + +#### Features + +- Allow authorization via XOAUTH2 using access token. + +#### Fixes + +- Revert "Don't output initial blurb in "quiet" mode". +- Fix Changelog. + +#### Changes + +- Declare newmail_hook option stable. +- Declare utime_from_header option stable. +- Decode foldernames is removed EXPERIMENTAL flag. +- Declare XOAUTH2 stable. +- Declare tls_level option stable. +- Declare IMAP Keywords option stable. + + ### OfflineIMAP v6.6.1 (2015-12-28) #### Notes diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index 758c9cb..a3ec482 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -1,8 +1,8 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' -__version__ = "6.6.1" -__revision__ = "" +__version__ = "6.7.0" +__revision__ = "-rc1" # Expecting "-rcN" or "" for stable releases. __bigversion__ = __version__ + __revision__ __copyright__ = "Copyright 2002-2015 John Goerzen & contributors" __author__ = "John Goerzen"