Skip to content

Commit

Permalink
v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ikalchev committed Dec 13, 2020
1 parent a5c4933 commit cd31df8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ Sections
### Developers
-->

## [3.1.0] - 2020-12-13

### Fixed
- Ensure an error response is generated on exception. [#292](https://github.com/ikalchev/HAP-python/pull/292)
- Improve error reporting during pairing. [#289](https://github.com/ikalchev/HAP-python/pull/289)
- Handle request for an empty read instead of throwing an exception. [#288](https://github.com/ikalchev/HAP-python/pull/288)
- Fix thread safety in get characteristics. [#287](https://github.com/ikalchev/HAP-python/pull/287)

## [3.0.0] - 2020-07-25

### Added
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 = 3
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 cd31df8

Please sign in to comment.