diff --git a/CHANGELOG.md b/CHANGELOG.md index d40a8906..368ce092 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ Change Log HEAD ---- + + +2.1.0 +----- - Added support for OAuth 2.0 authentication - Fixed a bug in `RelativeMonthlyPattern` and `RelativeYearlyPattern` where the `weekdays` field was thought to be a list, but is in fact a single value. Renamed the field to `weekday` to reflect the change. diff --git a/exchangelib/__init__.py b/exchangelib/__init__.py index 61b20bdd..10df3614 100644 --- a/exchangelib/__init__.py +++ b/exchangelib/__init__.py @@ -17,7 +17,7 @@ from .transport import BASIC, DIGEST, NTLM, GSSAPI, SSPI, OAUTH2 from .version import Build, Version -__version__ = '2.0.1' +__version__ = '2.1.0' __all__ = [ '__version__',