diff --git a/CHANGELOG.md b/CHANGELOG.md index eb544d3..18fd345 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.31.1 (2024-04-25) + +### Fix + +* Show h5075 as h5075 instead of h5075/h5072 ([#83](https://github.com/Bluetooth-Devices/govee-ble/issues/83)) ([`8fc22f7`](https://github.com/Bluetooth-Devices/govee-ble/commit/8fc22f7e4183341e02c38667ab830c9edeb27cd3)) + ## v0.31.0 (2024-01-31) ### Feature diff --git a/pyproject.toml b/pyproject.toml index 886fd89..ab21eac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "govee-ble" -version = "0.31.0" +version = "0.31.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 87856f5..d816e36 100644 --- a/src/govee_ble/__init__.py +++ b/src/govee_ble/__init__.py @@ -19,7 +19,7 @@ from .parser import GoveeBluetoothDeviceData -__version__ = "0.31.0" +__version__ = "0.31.1" __all__ = [ "GoveeBluetoothDeviceData",