From 40822eea2b19d4bc1f7ed03229a18316c939f344 Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Fri, 17 Jan 2020 11:36:24 +0100 Subject: [PATCH] Bump major version after removing Python2 support --- CHANGELOG.md | 4 ++++ exchangelib/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 417736d7..5d80dd89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ Change Log HEAD ---- + + +3.0.0 +----- - The new Autodiscover implementation added in 2.2.0 is now default. To switch back to the old implementation, set the environment variable `EXCHANGELIB_AUTODISCOVER_VERSION=legacy`. - Removed support for Python 2 diff --git a/exchangelib/__init__.py b/exchangelib/__init__.py index 87d9adfe..a4ead5ac 100644 --- a/exchangelib/__init__.py +++ b/exchangelib/__init__.py @@ -16,7 +16,7 @@ from .transport import BASIC, DIGEST, NTLM, GSSAPI, SSPI, OAUTH2 from .version import Build, Version -__version__ = '2.2.0' +__version__ = '3.0.0' __all__ = [ '__version__',