diff --git a/CHANGELOG.md b/CHANGELOG.md index 7398645..7b15a54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v1.1.1 (2022-09-08) +### Fix +* Add binary sensor device class ([`d48783e`](https://github.com/Bluetooth-Devices/bthome-ble/commit/d48783e1a7c3a3a719fc7dca9f08feb034660507)) + ## v1.1.0 (2022-09-06) ### Feature * Binary sensor support ([`35ec5e1`](https://github.com/Bluetooth-Devices/bthome-ble/commit/35ec5e1d328038b328c4b793e9fe70c354d731dd)) diff --git a/pyproject.toml b/pyproject.toml index a1de533..4b1ecfe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bthome-ble" -version = "1.1.0" +version = "1.1.1" description = "BThome BLE support" authors = ["Ernst Klamer "] license = "MIT" diff --git a/src/bthome_ble/__init__.py b/src/bthome_ble/__init__.py index 3975951..66b2306 100644 --- a/src/bthome_ble/__init__.py +++ b/src/bthome_ble/__init__.py @@ -14,7 +14,7 @@ from .parser import BTHomeBluetoothDeviceData -__version__ = "1.1.0" +__version__ = "1.1.1" __all__ = [ "BTHomeBluetoothDeviceData",