Skip to content

Commit 2c2fa8c

Browse files
authored
Merge pull request #132 from puddly/rc
0.16.2 Release
2 parents ea308a5 + c5c59e9 commit 2c2fa8c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

zigpy_xbee/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
MAJOR_VERSION = 0
22
MINOR_VERSION = 16
3-
PATCH_VERSION = "1"
3+
PATCH_VERSION = "2"
44
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
55
__version__ = f"{__short_version__}.{PATCH_VERSION}"

zigpy_xbee/zigbee/application.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@ async def send_packet(self, packet: zigpy.types.ZigbeePacket) -> None:
221221
send_req = self._api.tx_explicit(
222222
long_addr,
223223
short_addr,
224-
packet.src_ep,
225-
packet.dst_ep,
224+
packet.src_ep or 0,
225+
packet.dst_ep or 0,
226226
packet.cluster_id,
227227
packet.profile_id,
228228
packet.radius,

0 commit comments

Comments
 (0)