From 06ed00a2112f27dc7fc81a2444eb7f5afde062e1 Mon Sep 17 00:00:00 2001 From: Nicolas Sebrecht Date: Sat, 8 Jun 2019 11:32:57 +0200 Subject: [PATCH] v7.2.4 Tested-by: Nicolas Sebrecht Signed-off-by: Nicolas Sebrecht --- Changelog.md | 36 ++++++++++++++++++++++++++++++++++++ offlineimap/__init__.py | 2 +- 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index c4cd96a..edc8cb2 100644 --- a/Changelog.md +++ b/Changelog.md @@ -15,6 +15,42 @@ Note to mainainers: * The following excerpt is only usefull when rendered in the website. {:toc} +### OfflineIMAP v7.2.4 (2019-06-08) + +#### Notes + +This release introduces mkdir -p alike folder creation and fixes cygwin support +in Windows. + +This release was tested by: + +- Nicolas Sebrecht + + +#### Authors + +- Nicolas Sebrecht (4) +- kimim (2) +- Jelmer Vernooij (1) +- Kyle Altendorf (1) + + +#### Features + +- mkdir -p alike folder creation. [Kyle Altendorf] + +#### Fixes + +- Use portable locker to support cygwin in Windows. [kimim] +- contrib/release.py: don't break if sphinx-build is missing. [Nicolas Sebrecht] + +#### Changes + +- Update FSF postal address. [Jelmer Vernooij] +- repository/IMAP: update copyright header date. [Nicolas Sebrecht] +- PULL_REQUEST_TEMPLATE: add space between brackets to enable the edition in the gui. [Nicolas Sebrecht] + + ### OfflineIMAP v7.2.3 (2019-02-17) #### Notes diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index df2f58c..ad62b47 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.2.3" +__version__ = "7.2.4" __copyright__ = "Copyright 2002-2019 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__= "offlineimap-project@lists.alioth.debian.org"