Skip to content

Commit

Permalink
add fail status
Browse files Browse the repository at this point in the history
  • Loading branch information
steinbach committed Jun 21, 2021
1 parent e2dcd21 commit ee7ffc4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
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.9.0] - 2021-06-21
### Added
- Fail status for all target operations

## [0.8.2] - 2021-06-21
### Fixed
- Fixed getLeafChildren Method
Expand Down Expand Up @@ -102,7 +106,8 @@ Minor fix in observer interface
## [0.1.0] - 2021-05-26
Initial release

[unreleased]: https://github.com/tillsteinbach/WeConnect-python/compare/v0.8.2...HEAD
[unreleased]: https://github.com/tillsteinbach/WeConnect-python/compare/v0.9.0...HEAD
[0.9.0]: https://github.com/tillsteinbach/WeConnect-python/releases/tag/v0.9.0
[0.8.2]: https://github.com/tillsteinbach/WeConnect-python/releases/tag/v0.8.2
[0.8.1]: https://github.com/tillsteinbach/WeConnect-python/releases/tag/v0.8.1
[0.8.0]: https://github.com/tillsteinbach/WeConnect-python/releases/tag/v0.8.0
Expand Down
3 changes: 3 additions & 0 deletions weconnect/elements.py
Original file line number Diff line number Diff line change
Expand Up @@ -555,6 +555,7 @@ def __str__(self):

class Status(Enum,):
SUCCESSFULL = 'successful'
FAIL = 'fail'
POLLING_TIMEOUT = 'polling_timeout'
IN_PROGRESS = 'in_progress'
QUEUED = 'queued'
Expand Down Expand Up @@ -1988,6 +1989,7 @@ def __str__(self):

class Status(Enum,):
SUCCESSFULL = 'successful'
FAIL = 'fail'
POLLING_TIMEOUT = 'polling_timeout'
IN_PROGRESS = 'in_progress'
QUEUED = 'queued'
Expand Down Expand Up @@ -2049,6 +2051,7 @@ def __str__(self):

class Status(Enum,):
SUCCESSFULL = 'successful'
FAIL = 'fail'
POLLING_TIMEOUT = 'polling_timeout'
IN_PROGRESS = 'in_progress'
QUEUED = 'queued'
Expand Down

0 comments on commit ee7ffc4

Please sign in to comment.