diff --git a/CREDITS.md b/CREDITS.md index 13e7a18..2ea3c46 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -12,6 +12,7 @@ Project contributors (in alphabetical order) - @riokuu - @swistakm - @Pastucha +- @pvsti ## Projects - Initial scaffolding for this project was created using [cookiecutter](https://github.com/audreyr/cookiecutter) and diff --git a/HISTORY.rst b/HISTORY.rst index 5b1efe8..b8e70b2 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,14 @@ ======= History ======= +2.4.0 (2024-06-03) +------------------ +* Fix: Refactor sensor_factory by @Pastucha in https://github.com/blebox/blebox_uniapi/pull/163 +* Order in BOX_TYPES by @Pastucha in https://github.com/blebox/blebox_uniapi/pull/164 +* Feature: smart meter by @swistakm in https://github.com/blebox/blebox_uniapi/pull/168 +* Smartmeter by @pvsti in https://github.com/blebox/blebox_uniapi/pull/170 +* fix: resolve regressions in cover and climate due to jmespath introduction by @swistakm in https://github.com/blebox/blebox_uniapi/pull/173 + 2.3.0 (2024-03-13) ------------------ * feat: add new methods to cover feature enabling handling of tilt open/close actions by @swistakm in https://github.com/blebox/blebox_uniapi/pull/154 diff --git a/blebox_uniapi/__init__.py b/blebox_uniapi/__init__.py index f610e42..02d7376 100644 --- a/blebox_uniapi/__init__.py +++ b/blebox_uniapi/__init__.py @@ -2,4 +2,4 @@ __author__ = """BleBox""" __email__ = "opensource@blebox.eu" -__version__ = "2.3.0" +__version__ = "2.4.0" diff --git a/setup.cfg b/setup.cfg index 45b6332..7d7f978 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.3.0 +current_version = 2.4.0 commit = True tag = True diff --git a/setup.py b/setup.py index 88a780c..5c3a7bc 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ ] setup( - version="2.3.0", + version="2.4.0", author="BleBox", author_email="opensource@blebox.eu", python_requires=">=3.9",