diff --git a/HISTORY.rst b/HISTORY.rst index 0824de8..a774ff8 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,10 @@ ======= History ======= +2.4.2 (2024-06-04) +------------------ +* fix: add missing support for active power sensors on switchbox/switchboxd devices by @swistakm in https://github.com/blebox/blebox_uniapi/pull/175 + 2.4.1 (2024-06-04) ------------------ * fix: rectify ambiguity around powerConsumption and wind sensor types diff --git a/blebox_uniapi/__init__.py b/blebox_uniapi/__init__.py index 06fb3d7..339530f 100644 --- a/blebox_uniapi/__init__.py +++ b/blebox_uniapi/__init__.py @@ -2,4 +2,4 @@ __author__ = """BleBox""" __email__ = "opensource@blebox.eu" -__version__ = "2.4.1" +__version__ = "2.4.2" diff --git a/setup.cfg b/setup.cfg index ebccf51..06e5b05 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.4.1 +current_version = 2.4.2 commit = True tag = True diff --git a/setup.py b/setup.py index c2218ce..1fad083 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ ] setup( - version="2.4.1", + version="2.4.2", author="BleBox", author_email="opensource@blebox.eu", python_requires=">=3.9",