Skip to content

Commit

Permalink
Update API to 0.12.1 for minor bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
tillsteinbach committed Jul 6, 2021
1 parent 21f74b4 commit 9355156
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
weconnect==0.12.0
weconnect==0.12.1
ascii_magic>=1.5.5
3 changes: 2 additions & 1 deletion weconnect_cli/weconnect_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9355156

Please sign in to comment.