diff --git a/CHANGELOG.md b/CHANGELOG.md index 915ab2f..3aa76bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. ## [Unreleased] - No unreleased changes so far +## [0.11.1] - 2021-07-06 +### Changed +- Update API to 0.12.1 for minor bugfix + ## [0.11.0] - 2021-07-05 ### Added - Support to work with car images / status images @@ -121,7 +125,8 @@ All notable changes to this project will be documented in this file. ## [0.1.0] - 2021-05-26 Initial release -[unreleased]: https://github.com/tillsteinbach/WeConnect-cli/compare/v0.11.0..HEAD +[unreleased]: https://github.com/tillsteinbach/WeConnect-cli/compare/v0.11.1..HEAD +[0.11.1]: https://github.com/tillsteinbach/WeConnect-cli/releases/tag/v0.11.1 [0.11.0]: https://github.com/tillsteinbach/WeConnect-cli/releases/tag/v0.11.0 [0.10.2]: https://github.com/tillsteinbach/WeConnect-cli/releases/tag/v0.10.2 [0.10.1]: https://github.com/tillsteinbach/WeConnect-cli/releases/tag/v0.10.1 diff --git a/requirements.txt b/requirements.txt index 670663b..e605a6e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -weconnect==0.12.0 +weconnect==0.12.1 ascii_magic>=1.5.5 diff --git a/weconnect_cli/weconnect_cli.py b/weconnect_cli/weconnect_cli.py index 7e82ad6..695eae2 100644 --- a/weconnect_cli/weconnect_cli.py +++ b/weconnect_cli/weconnect_cli.py @@ -145,7 +145,8 @@ def main(): # noqa: C901 # pylint: disable=too-many-statements,too-many-branche try: # pylint: disable=too-many-nested-blocks weConnect = weconnect.WeConnect(username=username, password=password, tokenfile=tokenfile, - updateAfterLogin=False, loginOnInit=False) + updateAfterLogin=False, loginOnInit=False, updateCapabilities=(not args.noCapabilities), + updatePictures=(not args.noCapabilities)) if args.noCache or not os.path.isfile(args.cachefile): weConnect.login() else: