diff --git a/CHANGELOG.md b/CHANGELOG.md index cd9a79e..4b8f35c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v2.4.1 (2024-02-23) + +### Fix + +- Avoid concurrent refreshes of adapters (#30) ([`d355b17`](https://github.com/Bluetooth-Devices/habluetooth/commit/d355b1768705706dec7062ad5d6267089d87a88e)) + ## v2.4.0 (2024-01-22) ### Feature diff --git a/docs/conf.py b/docs/conf.py index d8730a9..2c30da4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -7,7 +7,7 @@ project = "habluetooth" copyright = "2023, J. Nick Koston" author = "J. Nick Koston" -release = "2.4.0" +release = "2.4.1" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index cd86694..d13b95d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "habluetooth" -version = "2.4.0" +version = "2.4.1" description = "High availability Bluetooth" authors = ["J. Nick Koston "] license = "Apache Software License 2.0" diff --git a/src/habluetooth/__init__.py b/src/habluetooth/__init__.py index 30ba548..17d774a 100644 --- a/src/habluetooth/__init__.py +++ b/src/habluetooth/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.4.0" +__version__ = "2.4.1" from .advertisement_tracker import ( TRACKER_BUFFERING_WOBBLE_SECONDS,