diff --git a/CHANGELOG.md b/CHANGELOG.md index b590194..f986035 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.12.1 (2022-07-21) +### Fix +* Bump sensor-state-data to fix typing ([#22](https://github.com/Bluetooth-Devices/govee-ble/issues/22)) ([`d5cdfc5`](https://github.com/Bluetooth-Devices/govee-ble/commit/d5cdfc506abeb4c81bbb0c2d0c7515f7c81266c5)) + ## v0.12.0 (2022-07-21) ### Feature * Refactor for sensor-state-data 2 ([#21](https://github.com/Bluetooth-Devices/govee-ble/issues/21)) ([`b7fb4dc`](https://github.com/Bluetooth-Devices/govee-ble/commit/b7fb4dcef279e1eeb4b53e47e8f684c3a785e3c2)) diff --git a/pyproject.toml b/pyproject.toml index e631be5..59d94f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "govee-ble" -version = "0.12.0" +version = "0.12.1" description = "Manage Govee BLE devices" authors = ["J. Nick Koston "] license = "Apache Software License 2.0" diff --git a/src/govee_ble/__init__.py b/src/govee_ble/__init__.py index 4d4afc0..3bc7641 100644 --- a/src/govee_ble/__init__.py +++ b/src/govee_ble/__init__.py @@ -19,7 +19,7 @@ from .parser import GoveeBluetoothDeviceData -__version__ = "0.12.0" +__version__ = "0.12.1" __all__ = [ "GoveeBluetoothDeviceData",