Skip to content

Commit

Permalink
v4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ikalchev committed Aug 22, 2021
1 parent 8fd321a commit 7d7d34f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@ Sections
### Developers
-->

## [4.1.0] - 2021-08-22

### Added
- Add support for saving permissions when pairing. [#372](https://github.com/ikalchev/HAP-python/pull/372)
- Add accessory-level callbacks. [#373](https://github.com/ikalchev/HAP-python/pull/373)

### Changed
- Increment the config version when the accessory changes. [#376](https://github.com/ikalchev/HAP-python/pull/376)

## [4.0.0] - 2021-07-22

- Add support for HAP v 1.1. [#365](https://github.com/ikalchev/HAP-python/pull/365)
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 = 0
MINOR_VERSION = 1
PATCH_VERSION = 0
__short_version__ = "{}.{}".format(MAJOR_VERSION, MINOR_VERSION)
__version__ = "{}.{}".format(__short_version__, PATCH_VERSION)
Expand Down

0 comments on commit 7d7d34f

Please sign in to comment.