Skip to content

Commit d49f85d

Browse files
committed
Merge branch 'dev' into 'master'.
2 parents 82bce7a + 4dfef07 commit d49f85d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

zigpy_xbee/api.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,8 +342,9 @@ def _handle_tx_status(self, frame_id, nwk, tries, tx_status, dsc_status):
342342
return
343343

344344
try:
345-
if tx_status in (t.TXStatus.SUCCESS,
346-
t.TXStatus.BROADCAST_APS_TX_ATTEMPT):
345+
if tx_status in (t.TXStatus.BROADCAST_APS_TX_ATTEMPT,
346+
t.TXStatus.SELF_ADDRESSED,
347+
t.TXStatus.SUCCESS):
347348
fut.set_result(tx_status)
348349
else:
349350
fut.set_exception(

zigpy_xbee/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Constants used by zigpy-xbee."""
22
MAJOR_VERSION = 0
33
MINOR_VERSION = 2
4-
PATCH_VERSION = '0'
4+
PATCH_VERSION = '1.dev0'
55
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
66
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)

0 commit comments

Comments
 (0)