We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c3df6c commit ed94a26Copy full SHA for ed94a26
2 files changed
CHANGELOG.md
@@ -16,6 +16,10 @@ Sections
16
### Developers
17
-->
18
19
+## [4.9.1] - 2023-10-25
20
+
21
+- Fix handling of explict close. [#467](https://github.com/ikalchev/HAP-python/pull/467)
22
23
## [4.9.0] - 2023-10-15
24
25
- Hashing of accessories no longer includes their values, resulting in more reliable syncs between
pyhap/const.py
@@ -1,7 +1,7 @@
1
"""This module contains constants used by other modules."""
2
MAJOR_VERSION = 4
3
MINOR_VERSION = 9
4
-PATCH_VERSION = 0
+PATCH_VERSION = 1
5
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
6
__version__ = f"{__short_version__}.{PATCH_VERSION}"
7
REQUIRED_PYTHON_VER = (3, 7)
0 commit comments