diff --git a/CHANGELOG.md b/CHANGELOG.md index 19dccf61..013f4c45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,14 @@ Change Log HEAD ---- + + +5.0.0 +----- - Make SOAP-based autodiscovery the default, and remove support for POX-based discovery. This also removes support for autodiscovery on Exchange 2007. Only `Account(..., autodiscover=True)` is supported again. -- Deprecated `RetryPolicy.may_retry_on_error`. Instead, ad custom retry logic +- Deprecated `RetryPolicy.may_retry_on_error`. Instead, add custom retry logic in `RetryPolicy.raise_response_errors`. - Moved `exchangelib.util.RETRY_WAIT` to `BaseProtocol.RETRY_WAIT`. diff --git a/exchangelib/__init__.py b/exchangelib/__init__.py index 42530357..151c55ce 100644 --- a/exchangelib/__init__.py +++ b/exchangelib/__init__.py @@ -36,7 +36,7 @@ from .transport import BASIC, CBA, DIGEST, GSSAPI, NTLM, OAUTH2, SSPI from .version import Build, Version -__version__ = "4.9.0" +__version__ = "5.0.0" __all__ = [ "__version__",