Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ecederstrand committed Jan 17, 2022
1 parent c765377 commit 629a9ce
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ HEAD
----


4.7.1
-----
- Fixed issue where creating an Account with autodiscover and no config would
never set a default retry policy.


4.7.0
-----
- Fixed some spelling mistakes:
Expand Down
10 changes: 6 additions & 4 deletions docs/exchangelib/account.html
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,9 @@ <h1 class="title">Module <code>exchangelib.account</code></h1>
).discover()
# Let&#39;s not use the auth_package hint from the AD response. It could be incorrect and we can just guess.
self.protocol.config.auth_type = auth_type
self.protocol.config.retry_policy = retry_policy
if not self.protocol.config.version:
if retry_policy:
self.protocol.config.retry_policy = retry_policy
if version:
self.protocol.config.version = version
primary_smtp_address = self.ad_response.autodiscover_smtp_address
else:
Expand Down Expand Up @@ -755,8 +756,9 @@ <h2 class="section-title" id="header-classes">Classes</h2>
).discover()
# Let&#39;s not use the auth_package hint from the AD response. It could be incorrect and we can just guess.
self.protocol.config.auth_type = auth_type
self.protocol.config.retry_policy = retry_policy
if not self.protocol.config.version:
if retry_policy:
self.protocol.config.retry_policy = retry_policy
if version:
self.protocol.config.version = version
primary_smtp_address = self.ad_response.autodiscover_smtp_address
else:
Expand Down
7 changes: 4 additions & 3 deletions docs/exchangelib/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ <h1 class="title">Package <code>exchangelib</code></h1>
from .transport import BASIC, DIGEST, NTLM, GSSAPI, SSPI, OAUTH2, CBA
from .version import Build, Version

__version__ = &#39;4.7.0&#39;
__version__ = &#39;4.7.1&#39;

__all__ = [
&#39;__version__&#39;,
Expand Down Expand Up @@ -372,8 +372,9 @@ <h3>Inherited members</h3>
).discover()
# Let&#39;s not use the auth_package hint from the AD response. It could be incorrect and we can just guess.
self.protocol.config.auth_type = auth_type
self.protocol.config.retry_policy = retry_policy
if not self.protocol.config.version:
if retry_policy:
self.protocol.config.retry_policy = retry_policy
if version:
self.protocol.config.version = version
primary_smtp_address = self.ad_response.autodiscover_smtp_address
else:
Expand Down
2 changes: 1 addition & 1 deletion exchangelib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from .transport import BASIC, DIGEST, NTLM, GSSAPI, SSPI, OAUTH2, CBA
from .version import Build, Version

__version__ = '4.7.0'
__version__ = '4.7.1'

__all__ = [
'__version__',
Expand Down

0 comments on commit 629a9ce

Please sign in to comment.