Skip to content

Commit

Permalink
v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ikalchev committed Jul 30, 2021
1 parent 1b71e84 commit 4490a9c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ Sections
### Developers
-->

## [3.6.0] - 2021-7-22
## [4.0.0] - 2021-07-22

- Add support for HAP v 1.1. [#365](https://github.com/ikalchev/HAP-python/pull/365)

## [3.6.0] - 2021-07-22

- Reduce event overhead. [#360](https://github.com/ikalchev/HAP-python/pull/360)
- Ensure floating point values are truncated for int formats. [#361](https://github.com/ikalchev/HAP-python/pull/361)
Expand Down
4 changes: 2 additions & 2 deletions 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 = 3
MINOR_VERSION = 6
MAJOR_VERSION = 4
MINOR_VERSION = 0
PATCH_VERSION = 0
__short_version__ = "{}.{}".format(MAJOR_VERSION, MINOR_VERSION)
__version__ = "{}.{}".format(__short_version__, PATCH_VERSION)
Expand Down

0 comments on commit 4490a9c

Please sign in to comment.