diff --git a/CHANGELOG.md b/CHANGELOG.md index fa407e9..e0c1527 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.14.2 (2023-01-03) +### Fix +* Extend binary sensor enums ([#29](https://github.com/Bluetooth-Devices/xiaomi-ble/issues/29)) ([`4563a9b`](https://github.com/Bluetooth-Devices/xiaomi-ble/commit/4563a9bdf86bc1cd40dd86a141437bf20de1f7d6)) + ## v0.14.1 (2023-01-02) ### Fix * Lower bleak version requirement ([#28](https://github.com/Bluetooth-Devices/xiaomi-ble/issues/28)) ([`c9a80ac`](https://github.com/Bluetooth-Devices/xiaomi-ble/commit/c9a80ac1f6fcc433cd9499092c759d195309c2e4)) diff --git a/pyproject.toml b/pyproject.toml index c18798f..e416e46 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "xiaomi-ble" -version = "0.14.1" +version = "0.14.2" description = "Manage Xiaomi BLE devices" authors = ["John Carr "] license = "Apache Software License 2.0" diff --git a/src/xiaomi_ble/__init__.py b/src/xiaomi_ble/__init__.py index 810d7af..102f681 100644 --- a/src/xiaomi_ble/__init__.py +++ b/src/xiaomi_ble/__init__.py @@ -19,7 +19,7 @@ from .parser import XiaomiBluetoothDeviceData -__version__ = "0.14.1" +__version__ = "0.14.2" __all__ = [ "XiaomiBluetoothDeviceData",