From 557ca854c26f544c5b138f80dd572ed71af1baa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolfo=20Garc=C3=ADa=20Pe=C3=B1as=20=28kix=29?= Date: Mon, 18 Oct 2021 15:00:16 +0200 Subject: [PATCH] v8.0.0 --- Changelog.md | 36 ++++++++++++++++++++++++++++++++++++ offlineimap/__init__.py | 4 ++-- 2 files changed, 38 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index 3acfec2..4f4f656 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 v8.0.0 (2021-10-18) + +#### Notes + +Migration to Python 3 and related patches. +New OfflineIMAP3!! Thanks to the contributors!! + +This release was tested by: + +- Rodolfo García Peñas (kix) + + +#### Authors + +- Rodolfo García Peñas (kix) (353) +- Joseph Ishac (22) +- Thomas De Schampheleire (6) +- Sudip Mukherjee (4) +- Nicolas Sebrecht (3) +- Phil Mocek (2) +- Amit Ramon (1) +- Ashish Panigrahi (1) +- Ben Yanke (1) +- Guido Günther (1) +- Jaroslav Lichtblau (1) +- Konstantinos Natsakis (1) +- mh (1) +- peeweep (1) +- Pi-Yueh Chuang (1) +- Xianwen Chen (1) + +#### Features + +- New source for Python 3 + + ### OfflineIMAP v7.3.0 (2019-08-19) #### Notes diff --git a/offlineimap/__init__.py b/offlineimap/__init__.py index 4b12df0..ec77ef8 100644 --- a/offlineimap/__init__.py +++ b/offlineimap/__init__.py @@ -2,8 +2,8 @@ __all__ = ['OfflineImap'] __productname__ = 'OfflineIMAP' # Expecting trailing "-rcN" or "" for stable releases. -__version__ = "7.3.0" -__copyright__ = "Copyright 2002-2019 John Goerzen & contributors" +__version__ = "8.0.0" +__copyright__ = "Copyright 2002-2021 John Goerzen & contributors" __author__ = "John Goerzen" __author_email__ = "offlineimap-project@lists.alioth.debian.org" __description__ = "Disconnected Universal IMAP Mail Synchronization/Reader Support"