diff --git a/CHANGELOG.md b/CHANGELOG.md index 96ac2c1..7379c91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.29.0 (2024-05-05) + +### Feature + +* Add support for Linptech RS1BB(MI) ([#77](https://github.com/Bluetooth-Devices/xiaomi-ble/issues/77)) ([`57d070c`](https://github.com/Bluetooth-Devices/xiaomi-ble/commit/57d070c71282c43882bc64117c709cdf1aec8f09)) + ## v0.28.0 (2024-03-24) ### Feature diff --git a/pyproject.toml b/pyproject.toml index e4c92af..c58d818 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "xiaomi-ble" -version = "0.28.0" +version = "0.29.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 fe11dca..f6a23f4 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.28.0" +__version__ = "0.29.0" __all__ = [ "SLEEPY_DEVICE_MODELS",