Skip to content

Commit 555c0df

Browse files
authored
Merge pull request #138 from puddly/puddly/rc
0.17.0 Release
2 parents 2c2fa8c + b69c559 commit 555c0df

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
repos:
22
- repo: https://github.com/psf/black
3-
rev: 22.3.0
3+
rev: 23.1.0
44
hooks:
55
- id: black
66
args:
77
- --safe
88
- --quiet
9-
- repo: https://gitlab.com/pycqa/flake8
10-
rev: 4.0.1
9+
- repo: https://github.com/pycqa/flake8
10+
rev: 6.0.0
1111
hooks:
1212
- id: flake8
1313
- repo: https://github.com/PyCQA/isort
14-
rev: 5.10.1
14+
rev: 5.12.0
1515
hooks:
1616
- id: isort
1717
- repo: https://github.com/pre-commit/pre-commit-hooks
18-
rev: v4.1.0
18+
rev: v4.4.0
1919
hooks:
2020
- id: no-commit-to-branch
2121
args:

zigpy_xbee/__init__.py

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

zigpy_xbee/zigbee/application.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,9 @@ class XBeeGroupResponse(zigpy.quirks.CustomCluster, Groups):
325325
client_commands = {
326326
**Groups.client_commands,
327327
0x04: foundation.ZCLCommandDef(
328-
"remove_all_response", {"status": foundation.Status}, is_reply=True
328+
"remove_all_response",
329+
{"status": foundation.Status},
330+
direction=foundation.Direction.Client_to_Server,
329331
),
330332
}
331333

0 commit comments

Comments
 (0)