File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44## [ Unreleased]
55- no unreleased changes so far
66
7+ ## [ 0.9.0] - 2021-06-21
8+ ### Added
9+ - Fail status for all target operations
10+
711## [ 0.8.2] - 2021-06-21
812### Fixed
913- Fixed getLeafChildren Method
@@ -102,7 +106,8 @@ Minor fix in observer interface
102106## [ 0.1.0] - 2021-05-26
103107Initial release
104108
105- [ unreleased ] : https://github.com/tillsteinbach/WeConnect-python/compare/v0.8.2...HEAD
109+ [ unreleased ] : https://github.com/tillsteinbach/WeConnect-python/compare/v0.9.0...HEAD
110+ [ 0.9.0 ] : https://github.com/tillsteinbach/WeConnect-python/releases/tag/v0.9.0
106111[ 0.8.2 ] : https://github.com/tillsteinbach/WeConnect-python/releases/tag/v0.8.2
107112[ 0.8.1 ] : https://github.com/tillsteinbach/WeConnect-python/releases/tag/v0.8.1
108113[ 0.8.0 ] : https://github.com/tillsteinbach/WeConnect-python/releases/tag/v0.8.0
Original file line number Diff line number Diff line change @@ -555,6 +555,7 @@ def __str__(self):
555555
556556 class Status (Enum ,):
557557 SUCCESSFULL = 'successful'
558+ FAIL = 'fail'
558559 POLLING_TIMEOUT = 'polling_timeout'
559560 IN_PROGRESS = 'in_progress'
560561 QUEUED = 'queued'
@@ -1988,6 +1989,7 @@ def __str__(self):
19881989
19891990 class Status (Enum ,):
19901991 SUCCESSFULL = 'successful'
1992+ FAIL = 'fail'
19911993 POLLING_TIMEOUT = 'polling_timeout'
19921994 IN_PROGRESS = 'in_progress'
19931995 QUEUED = 'queued'
@@ -2049,6 +2051,7 @@ def __str__(self):
20492051
20502052 class Status (Enum ,):
20512053 SUCCESSFULL = 'successful'
2054+ FAIL = 'fail'
20522055 POLLING_TIMEOUT = 'polling_timeout'
20532056 IN_PROGRESS = 'in_progress'
20542057 QUEUED = 'queued'
You can’t perform that action at this time.
0 commit comments