Skip to content

Commit

Permalink
v4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ikalchev committed Jun 28, 2022
1 parent 7a59fe8 commit d900089
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,25 @@ Sections
### Breaking Changes
### Developers
-->

## [4.5.0] - 2022-06-28

- Speed up "get accessories". [#418](https://github.com/ikalchev/HAP-python/pull/418)
- Increase minimum python version to 3.7. [#417](https://github.com/ikalchev/HAP-python/pull/417)
- Speed up encryption by using ChaCha20Poly1305Reusable. [#413](https://github.com/ikalchev/HAP-python/pull/413)
- Speed up serialization using orjson. [#412](https://github.com/ikalchev/HAP-python/pull/412)
- Avoid redundant parsing of the URL. [#402](https://github.com/ikalchev/HAP-python/pull/402)

## [4.4.0] - 2022-11-01

### Added
- Allow invalid client values when enabled. [#392](https://github.com/ikalchev/HAP- python/pull/392)
- Allow invalid client values when enabled. [#392](https://github.com/ikalchev/HAP-python/pull/392)

## [4.3.0] - 2021-10-07

### Fixed
- Only send the latest state in case of multiple events for the same characteristic. [#385](https://github.com/ikalchev/HAP-python/pull/385)
- Handle invalid formats from clients. [#387](https://github.com/ikalchev/HAP- python/pull/387)
- Handle invalid formats from clients. [#387](https://github.com/ikalchev/HAP-python/pull/387)

## [4.2.1] - 2021-09-06

Expand Down
2 changes: 1 addition & 1 deletion pyhap/const.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""This module contains constants used by other modules."""
MAJOR_VERSION = 4
MINOR_VERSION = 4
MINOR_VERSION = 5
PATCH_VERSION = 0
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
__version__ = f"{__short_version__}.{PATCH_VERSION}"
Expand Down

0 comments on commit d900089

Please sign in to comment.