diff options
author | Tobias Brox <tobias@redpill-linpro.com> | 2021-11-30 00:55:30 +0100 |
---|---|---|
committer | Tobias Brox <tobias@redpill-linpro.com> | 2021-11-30 00:55:30 +0100 |
commit | 40d1c52f064d05d554bd9c6d916984a00d888a83 (patch) | |
tree | 67ec1953588c21d89703bdeb26e9155e5d8a2ee6 | |
parent | 30e6629d4e5343f7f117b37d5598259c27793eb9 (diff) | |
download | python-caldav-40d1c52f064d05d554bd9c6d916984a00d888a83.zip |
version number 0.8.2, with changelog
-rw-r--r-- | changelog-0.8.md | 14 | ||||
-rwxr-xr-x | setup.py | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/changelog-0.8.md b/changelog-0.8.md index 52230a5..00ff590 100644 --- a/changelog-0.8.md +++ b/changelog-0.8.md @@ -1,3 +1,17 @@ +# Changelov v0.8.1 -> v0.8.2 + +## Bugfix/feature + +* New method DAVClient.verify_login - will verify that the username/password is correct. +* It will also ensure that the auth method is set correctly (basic auth vs digest auth) +* Method will be applied when initializing the auth object. This solved issues on some servers that disbehaves when the incorrect auth method is used. + +Commits: 1c2577cf3a177cc2ec2a0b703ffdd9052b17c1d9 + +Github issues: https://github.com/python-caldav/caldav/issues/158 + +Credits: @Sigmun + # Changelog v0.8 -> v0.8.1 ## Various bugfixes and minor enhancements @@ -5,7 +5,7 @@ import sys ## ATTENTION! when doing releases, the default debugmode in lib/error.py should be set to PRODUCTION. ## (TODO: any nicer ways than doing this manually? Make a "releases" branch, maybe?) -version = '0.8.1' +version = '0.8.2' if __name__ == '__main__': ## For python 2.7 and 3.5 we depend on pytz and tzlocal. For 3.6 and up, batteries are included. Same with mock. |