From ed94a262b91300ff5b90164589f1d68d5deebc0d Mon Sep 17 00:00:00 2001 From: Ivan Kalchev Date: Wed, 25 Oct 2023 21:28:33 +0300 Subject: [PATCH] v4.9.1 --- CHANGELOG.md | 4 ++++ pyhap/const.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0289ceed..e0a1945d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,10 @@ Sections ### Developers --> +## [4.9.1] - 2023-10-25 + +- Fix handling of explict close. [#467](https://github.com/ikalchev/HAP-python/pull/467) + ## [4.9.0] - 2023-10-15 - Hashing of accessories no longer includes their values, resulting in more reliable syncs between diff --git a/pyhap/const.py b/pyhap/const.py index e4c72e1c..9f081eef 100644 --- a/pyhap/const.py +++ b/pyhap/const.py @@ -1,7 +1,7 @@ """This module contains constants used by other modules.""" MAJOR_VERSION = 4 MINOR_VERSION = 9 -PATCH_VERSION = 0 +PATCH_VERSION = 1 __short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}" __version__ = f"{__short_version__}.{PATCH_VERSION}" REQUIRED_PYTHON_VER = (3, 7)