diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d473ff..d336251 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.14.0 (2022-12-10) +### Feature +* Cleanup new storage apis and add coverage ([#33](https://github.com/Bluetooth-Devices/bluetooth-adapters/issues/33)) ([`07cfbdf`](https://github.com/Bluetooth-Devices/bluetooth-adapters/commit/07cfbdfdc03f1065978c57e9097b1c07326ab781)) + ## 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)) diff --git a/pyproject.toml b/pyproject.toml index d6c6ffc..5845a8d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bluetooth-adapters" -version = "0.13.0" +version = "0.14.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 bd01424..1de575e 100644 --- a/src/bluetooth_adapters/__init__.py +++ b/src/bluetooth_adapters/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.13.0" +__version__ = "0.14.0" from .adapters import BluetoothAdapters