diff --git a/CHANGELOG.md b/CHANGELOG.md index 84f252d5..eb53f221 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,12 @@ Sections ### Developers --> +## [2.4.1] - 2018-11-11 + +### Fixed +- Correctly proxy `_io_refs` to the socket. [#145](https://github.com/ikalchev/HAP-python/issues/145) + + ## [2.4.0] - 2018-11-10 ### Added diff --git a/pyhap/const.py b/pyhap/const.py index 84846d9f..c78d8249 100644 --- a/pyhap/const.py +++ b/pyhap/const.py @@ -1,7 +1,7 @@ """This module contains constants used by other modules.""" MAJOR_VERSION = 2 MINOR_VERSION = 4 -PATCH_VERSION = 0 +PATCH_VERSION = 1 __short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION) __version__ = '{}.{}'.format(__short_version__, PATCH_VERSION) REQUIRED_PYTHON_VER = (3, 5)