diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b33b0d..d312a5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v2.11.1 (2023-05-12) +### Fix +* Add trigger based device to device type ([`0d0076b`](https://github.com/Bluetooth-Devices/bthome-ble/commit/0d0076ba6ee54fd1d68a67453c549f27fc9e5a2d)) + ## v2.11.0 (2023-05-04) ### Feature * Add sleepy device bit ([`d61e63e`](https://github.com/Bluetooth-Devices/bthome-ble/commit/d61e63ebd68461fae26ef08b05c5d5771dae45fb)) diff --git a/pyproject.toml b/pyproject.toml index 3ecb32a..8409b40 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bthome-ble" -version = "2.11.0" +version = "2.11.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 c286f54..302ea5d 100644 --- a/src/bthome_ble/__init__.py +++ b/src/bthome_ble/__init__.py @@ -15,7 +15,7 @@ from .parser import BTHomeBluetoothDeviceData -__version__ = "2.11.0" +__version__ = "2.11.1" __all__ = [ "BinarySensorDeviceClass",