diff --git a/CHANGELOG.md b/CHANGELOG.md index afda1da..c0cb365 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v2.5.2 (2024-04-16) + +### Fix + +- Ensure discovered_devices returns an empty list for offline scanners (#35) ([`2350543`](https://github.com/Bluetooth-Devices/habluetooth/commit/23505437c98529f692ab2dc0f5c3bdb5c9b7e3bd)) + ## v2.5.1 (2024-04-16) ### Fix diff --git a/docs/conf.py b/docs/conf.py index 7721c8c..ba53693 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.5.1" +release = "2.5.2" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index fc261ba..7f80c0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "habluetooth" -version = "2.5.1" +version = "2.5.2" 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 0c696c6..44b52cd 100644 --- a/src/habluetooth/__init__.py +++ b/src/habluetooth/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.5.1" +__version__ = "2.5.2" from .advertisement_tracker import ( TRACKER_BUFFERING_WOBBLE_SECONDS,