diff --git a/CHANGELOG.md b/CHANGELOG.md index b2fdc7b..31f10da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.13.0 (2023-01-01) +### Feature +* Add door opening and motion sensors ([#26](https://github.com/Bluetooth-Devices/xiaomi-ble/issues/26)) ([`3e0babd`](https://github.com/Bluetooth-Devices/xiaomi-ble/commit/3e0babdde9a69aabd470506f908be55673708671)) + ## v0.12.2 (2022-11-15) ### Fix * Bump sensor-state-data ([#24](https://github.com/Bluetooth-Devices/xiaomi-ble/issues/24)) ([`c2dd39c`](https://github.com/Bluetooth-Devices/xiaomi-ble/commit/c2dd39ca898910c6458f90033068d8924ecadf51)) diff --git a/pyproject.toml b/pyproject.toml index 1c0a0ed..caffb6d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "xiaomi-ble" -version = "0.12.2" +version = "0.13.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 387aa60..fdf4be1 100644 --- a/src/xiaomi_ble/__init__.py +++ b/src/xiaomi_ble/__init__.py @@ -19,7 +19,7 @@ from .parser import XiaomiBluetoothDeviceData -__version__ = "0.12.2" +__version__ = "0.13.0" __all__ = [ "XiaomiBluetoothDeviceData",