From 5709bb95e017b7433074ffc6febb736863959a1e Mon Sep 17 00:00:00 2001 From: Ivan Kalchev Date: Sun, 11 Nov 2018 23:07:08 +0200 Subject: [PATCH] Bump version to 2.4.1 --- CHANGELOG.md | 6 ++++++ pyhap/const.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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)