diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f2d459..b149b93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.22.0 (2024-01-27) + +### Feature + +* Add events for single button devices ([#62](https://github.com/Bluetooth-Devices/xiaomi-ble/issues/62)) ([`2110db9`](https://github.com/Bluetooth-Devices/xiaomi-ble/commit/2110db95c2670bfeda24ed7c0d0bf87bf559d45e)) + ## v0.21.2 (2024-01-11) ### Fix diff --git a/pyproject.toml b/pyproject.toml index ffef7e7..e217bd2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "xiaomi-ble" -version = "0.21.2" +version = "0.22.0" 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 f98ac86..79532aa 100644 --- a/src/xiaomi_ble/__init__.py +++ b/src/xiaomi_ble/__init__.py @@ -20,7 +20,7 @@ from .devices import SLEEPY_DEVICE_MODELS from .parser import EncryptionScheme, XiaomiBluetoothDeviceData -__version__ = "0.21.2" +__version__ = "0.22.0" __all__ = [ "SLEEPY_DEVICE_MODELS",