From c4f1d32848d203beee48319f6901b81f4e0d5a7c Mon Sep 17 00:00:00 2001 From: Ivan Kalchev Date: Thu, 22 Jul 2021 23:07:36 +0300 Subject: [PATCH] v3.5.2 --- CHANGELOG.md | 4 ++++ pyhap/const.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a1ee2b4..12450f5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,10 @@ Sections ### Developers --> +## [3.5.2] - 2021-07-22 + +- Switch from ed25519 to pynacl. [#355](https://github.com/ikalchev/HAP-python/pull/355) + ## [3.5.1] - 2021-07-04 # Changed diff --git a/pyhap/const.py b/pyhap/const.py index fd85324a..08bda221 100644 --- a/pyhap/const.py +++ b/pyhap/const.py @@ -1,10 +1,10 @@ """This module contains constants used by other modules.""" MAJOR_VERSION = 3 MINOR_VERSION = 5 -PATCH_VERSION = 1 +PATCH_VERSION = 2 __short_version__ = "{}.{}".format(MAJOR_VERSION, MINOR_VERSION) __version__ = "{}.{}".format(__short_version__, PATCH_VERSION) -REQUIRED_PYTHON_VER = (3, 5) +REQUIRED_PYTHON_VER = (3, 6) BASE_UUID = "-0000-1000-8000-0026BB765291"