Skip to content

Commit d900089

Browse files
committed
v4.5.0
1 parent 7a59fe8 commit d900089

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,25 @@ Sections
1515
### Breaking Changes
1616
### Developers
1717
-->
18+
19+
## [4.5.0] - 2022-06-28
20+
21+
- Speed up "get accessories". [#418](https://github.com/ikalchev/HAP-python/pull/418)
22+
- Increase minimum python version to 3.7. [#417](https://github.com/ikalchev/HAP-python/pull/417)
23+
- Speed up encryption by using ChaCha20Poly1305Reusable. [#413](https://github.com/ikalchev/HAP-python/pull/413)
24+
- Speed up serialization using orjson. [#412](https://github.com/ikalchev/HAP-python/pull/412)
25+
- Avoid redundant parsing of the URL. [#402](https://github.com/ikalchev/HAP-python/pull/402)
26+
1827
## [4.4.0] - 2022-11-01
1928

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

2332
## [4.3.0] - 2021-10-07
2433

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

2938
## [4.2.1] - 2021-09-06
3039

pyhap/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""This module contains constants used by other modules."""
22
MAJOR_VERSION = 4
3-
MINOR_VERSION = 4
3+
MINOR_VERSION = 5
44
PATCH_VERSION = 0
55
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
66
__version__ = f"{__short_version__}.{PATCH_VERSION}"

0 commit comments

Comments
 (0)