diff --git a/CHANGELOG.md b/CHANGELOG.md index 5709cc0..d127687 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.19.2 (2024-05-04) + +### Fix + +* Handle AuthError while probing for adapters ([#130](https://github.com/Bluetooth-Devices/bluetooth-adapters/issues/130)) ([`aec92f3`](https://github.com/Bluetooth-Devices/bluetooth-adapters/commit/aec92f32493637a237c3c8490b689b13da20b93f)) + ## v0.19.1 (2024-04-30) ### Fix diff --git a/pyproject.toml b/pyproject.toml index f8a35e2..0644137 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bluetooth-adapters" -version = "0.19.1" +version = "0.19.2" description = "Tools to enumerate and find Bluetooth Adapters" authors = ["J. Nick Koston "] license = "Apache Software License 2.0" diff --git a/src/bluetooth_adapters/__init__.py b/src/bluetooth_adapters/__init__.py index 2087d46..d695a39 100644 --- a/src/bluetooth_adapters/__init__.py +++ b/src/bluetooth_adapters/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.19.1" +__version__ = "0.19.2" from platform import system