From d9a8ccd44f5af00e37ab64aaf9194bbd5e1dc828 Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Fri, 17 Jan 2020 17:38:41 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 7 +++++++ exchangelib/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6be88f8..50c737d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,14 @@ Change Log HEAD ---- + + +3.1.0 +----- - Removed the legacy autodiscover implementation. +- Added `QuerySet.depth()` to configure item traversal of querysets. Default is `Shallow` except + for the `CommonViews` folder where default is `Associated`. +- Updating credentials on `Account.protocol` after getting an `UnauthorizedError` now works. 3.0.0 diff --git a/exchangelib/__init__.py b/exchangelib/__init__.py index 03817ee5..b187d227 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__ = '3.0.0' +__version__ = '3.1.0' __all__ = [ '__version__',