diff --git a/CHANGELOG.md b/CHANGELOG.md index 365191f..b83e973 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.15.0 (2022-12-21) +### Feature +* Add connection_slots to AdapterDetails ([#35](https://github.com/Bluetooth-Devices/bluetooth-adapters/issues/35)) ([`c0a7b52`](https://github.com/Bluetooth-Devices/bluetooth-adapters/commit/c0a7b52835cf8c7a68c54e483fa86436ea0c3342)) + ## v0.14.1 (2022-12-10) ### Fix * Handle data corruption ([#34](https://github.com/Bluetooth-Devices/bluetooth-adapters/issues/34)) ([`77f2e9b`](https://github.com/Bluetooth-Devices/bluetooth-adapters/commit/77f2e9b3f7a5012ddb3c78e3529a7f01146f74b6)) diff --git a/pyproject.toml b/pyproject.toml index cb07b29..afcd8f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bluetooth-adapters" -version = "0.14.1" +version = "0.15.0" 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 fdd5cd3..a31fad8 100644 --- a/src/bluetooth_adapters/__init__.py +++ b/src/bluetooth_adapters/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.14.1" +__version__ = "0.15.0" from .adapters import BluetoothAdapters