diff --git a/Changelog.md b/Changelog.md index 7def71c..2616184 100644 --- a/Changelog.md +++ b/Changelog.md @@ -15,6 +15,39 @@ Note to mainainers: * The following excerpt is only usefull when rendered in the website. {:toc} +### OfflineIMAP v7.0.3 (2016-07-30) + +#### Notes + +Here's a new bugfix release for the v7.0.x series. Only time we let us know if +it's a good release. However, I'm more confident. + +Thanks for the reports and feedbacks! + + +#### Authors + +- Nicolas Sebrecht (11) + + +#### Fixes + +- Make systemd service kill offlineimap as expected. [Nicolas Sebrecht] +- XOAUTH2: fix the \*\_eval configuration options. [Nicolas Sebrecht] +- IMAP: don't take junk data for valid mail content. [Nicolas Sebrecht] +- offlineimap.conf: allow non-spaces in the account list. [Nicolas Sebrecht] +- Properly ignore folders with invalid characters (sep) in their name. [Nicolas Sebrecht] + +#### Changes + +- Add the repository name when connecting. [Nicolas Sebrecht] +- Github template: add system/distribution. [Nicolas Sebrecht] +- XOAUTH2: use one "public" attribute everywhere for self.oauth2_request_url. [Nicolas Sebrecht] +- Code style and minor code enhancements. [Nicolas Sebrecht] +- Manual: add known issue about netrc. [Nicolas Sebrecht] + + + ### OfflineIMAP v7.0.2 (2016-07-27) #### Notes diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index 47d0e96..21f934e 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -2,7 +2,7 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' # Expecting trailing "-rcN" or "" for stable releases. -__version__ = "7.0.2" +__version__ = "7.0.3" __copyright__ = "Copyright 2002-2016 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "offlineimap-project@lists.alioth.debian.org"