8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a97ad9 commit 86ed133Copy full SHA for 86ed133
CHANGELOG.md
@@ -16,6 +16,11 @@ Sections
16
### Developers
17
-->
18
19
+## [4.9.2] - 2024-11-03
20
+
21
+- Implement zerocopy writes for the encrypted protocol. [#476](https://github.com/ikalchev/HAP-python/pull/476)
22
+- Linter and test fixe.
23
24
## [4.9.1] - 2023-10-25
25
26
- Fix handling of explict close. [#467](https://github.com/ikalchev/HAP-python/pull/467)
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 = 1
+PATCH_VERSION = 2
5
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
6
__version__ = f"{__short_version__}.{PATCH_VERSION}"
7
REQUIRED_PYTHON_VER = (3, 7)
0 commit comments