diff --git a/CHANGELOG.md b/CHANGELOG.md index 563577c..3fa4209 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.5.3 (2023-02-07) +### Fix +* Account for switching adapter when finding changed_manufacturer_data ([#9](https://github.com/Bluetooth-Devices/sensorpro-ble/issues/9)) ([`698d3c2`](https://github.com/Bluetooth-Devices/sensorpro-ble/commit/698d3c202b40ec1b3a654dc8a9ff536ff06243b2)) + ## v0.5.2 (2023-02-06) ### Fix * Update isort to fix CI ([#8](https://github.com/Bluetooth-Devices/sensorpro-ble/issues/8)) ([`1f3f186`](https://github.com/Bluetooth-Devices/sensorpro-ble/commit/1f3f18619b18f14095bd3e500d9489e7d45dd7ab)) diff --git a/pyproject.toml b/pyproject.toml index c25cc6a..538edf9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sensorpro-ble" -version = "0.5.2" +version = "0.5.3" description = "SensorPro BLE Devices" authors = ["J. Nick Koston "] license = "MIT" diff --git a/src/sensorpro_ble/__init__.py b/src/sensorpro_ble/__init__.py index 2ff2f28..f74826f 100644 --- a/src/sensorpro_ble/__init__.py +++ b/src/sensorpro_ble/__init__.py @@ -15,7 +15,7 @@ from .parser import SensorProBluetoothDeviceData -__version__ = "0.5.2" +__version__ = "0.5.3" __all__ = [ "SensorProBluetoothDeviceData",