diff --git a/CHANGELOG.md b/CHANGELOG.md index 672fb76..2e97518 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v3.0.1 (2024-05-03) + +### Fix + +- Ensure lazy advertisement uses none when name is not present (#44) ([`c300f73`](https://github.com/Bluetooth-Devices/habluetooth/commit/c300f73ba82d3549ea4c156ef11023e9478c8b6c)) + ## v3.0.0 (2024-05-02) ### Breaking diff --git a/docs/conf.py b/docs/conf.py index 66d317b..3f9c1c7 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 = "3.0.0" +release = "3.0.1" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index 140591f..9c904d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "habluetooth" -version = "3.0.0" +version = "3.0.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 8a4913d..4678de5 100644 --- a/src/habluetooth/__init__.py +++ b/src/habluetooth/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.0.0" +__version__ = "3.0.1" from .advertisement_tracker import ( TRACKER_BUFFERING_WOBBLE_SECONDS,