Skip to content

Commit

Permalink
v3.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ikalchev committed Jul 22, 2021
1 parent afe1840 commit c4f1d32
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyhap/const.py
Original file line number Diff line number Diff line change
@@ -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"

Expand Down

0 comments on commit c4f1d32

Please sign in to comment.