diff --git a/CHANGELOG.md b/CHANGELOG.md index 15b6856..fa16e21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.5.3 (2022-10-01) +### Fix +* Compat with upcoming bleak ([#20](https://github.com/Bluetooth-Devices/bluetooth-adapters/issues/20)) ([`61fcdbf`](https://github.com/Bluetooth-Devices/bluetooth-adapters/commit/61fcdbfd6865df17dda8369bf7b26ae51ed49d20)) + ## v0.5.2 (2022-09-26) ### Fix * Handle ConnectionRefusedError ([#19](https://github.com/Bluetooth-Devices/bluetooth-adapters/issues/19)) ([`7e85613`](https://github.com/Bluetooth-Devices/bluetooth-adapters/commit/7e85613cb2f972773748b4cde4ba826f75d807d2)) diff --git a/pyproject.toml b/pyproject.toml index f8c8db6..889bcee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bluetooth-adapters" -version = "0.5.2" +version = "0.5.3" 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 62aa000..fe0c025 100644 --- a/src/bluetooth_adapters/__init__.py +++ b/src/bluetooth_adapters/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.2" +__version__ = "0.5.3" from typing import Any