Skip to content

Commit

Permalink
v3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ikalchev committed Mar 1, 2021
1 parent 1dcad34 commit 4e10da2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ Sections
### Developers
-->

## [3.3.2] - 2021-03-01

### Fixed
- Resolve unavailable condition on restart. [#318](https://github.com/ikalchev/HAP-python/pull/318)
- Resolve config version overflow. [#318](https://github.com/ikalchev/HAP-python/pull/318)

## [3.3.1] - 2021-02-28

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pyhap/const.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""This module contains constants used by other modules."""
MAJOR_VERSION = 3
MINOR_VERSION = 3
PATCH_VERSION = 1
PATCH_VERSION = 2
__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
REQUIRED_PYTHON_VER = (3, 5)
Expand Down

0 comments on commit 4e10da2

Please sign in to comment.