From 893a90c291962c6a19b5214c0e6f4f7bf2b0cfd8 Mon Sep 17 00:00:00 2001 From: Nicolas Sebrecht Date: Mon, 22 Feb 2016 12:47:42 +0100 Subject: [PATCH] v6.7.0-rc2 Signed-off-by: Nicolas Sebrecht --- Changelog.md | 33 +++++++++++++++++++++++++++++++++ offlineimap/__init__.py | 2 +- 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 2e32c00..47329e0 100644 --- a/Changelog.md +++ b/Changelog.md @@ -16,6 +16,39 @@ Note to mainainers: {:toc} +### OfflineIMAP v6.7.0-rc2 (2016-02-22) + +#### Notes + +Learn to abruptly abort on multiple Ctrl+C. + +Some bugs got fixed. XOAUTH2 now honors the proxy configuration option. Error +message was improved when it fails to write a new mail in a local Maildir. + +enabled the hook for integration with Github. You'll get notifications on +updates of the master branch of the repository (mostly for new releases). I may +write some tweets about OfflineIMAP sometimes. + +#### Features + +- Abort after three Ctrl-C keystrokes. + +#### Fixes + +- Fix year of copyright. +- Versioning: avoid confusing pip by spliting out __version__ with __revision__. +- Fix: exceptions.OSError might not have attribute EEXIST defined. +- XOAUTH2 handler: urlopen with proxied socket. +- Manual: small grammar fix. +- Fix typos in offlineimap(1) manpage. + +#### Changes + +- Update links to the new URL www.offlineimap.org. + + + + ### OfflineIMAP v6.7.0-rc1 (2016-01-24) #### Notes diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index 12479ec..45a7677 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -1,7 +1,7 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' -__version__ = "6.7.0-rc1" # Expecting "-rcN" or "" for stable releases. +__version__ = "6.7.0-rc2" # Expecting "-rcN" or "" for stable releases. __copyright__ = "Copyright 2002-2016 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "offlineimap-project@lists.alioth.debian.org"