diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d3be2a..8d473ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.13.0 (2022-12-10) +### Feature +* Add storage to save and restore discovered devices ([#32](https://github.com/Bluetooth-Devices/bluetooth-adapters/issues/32)) ([`dc88a36`](https://github.com/Bluetooth-Devices/bluetooth-adapters/commit/dc88a3620dac8ec8404e80c65631b366baebf85a)) + ## v0.12.0 (2022-12-05) ### Feature * Expose load_history_from_managed_objects ([#31](https://github.com/Bluetooth-Devices/bluetooth-adapters/issues/31)) ([`823daa8`](https://github.com/Bluetooth-Devices/bluetooth-adapters/commit/823daa805b2c5d170485c2129403cf3612cd2378)) diff --git a/pyproject.toml b/pyproject.toml index 576a4fb..d6c6ffc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bluetooth-adapters" -version = "0.12.0" +version = "0.13.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 a995cd4..a98f32a 100644 --- a/src/bluetooth_adapters/__init__.py +++ b/src/bluetooth_adapters/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.12.0" +__version__ = "0.13.0" from .adapters import BluetoothAdapters