diff --git a/CHANGELOG.md b/CHANGELOG.md index fabbd14..2fe73ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.18.2 (2023-07-19) + +### Fix + +* Use only kg for mass ([#51](https://github.com/Bluetooth-Devices/xiaomi-ble/issues/51)) ([`93b5c9f`](https://github.com/Bluetooth-Devices/xiaomi-ble/commit/93b5c9ff0e0360b4c54d4bae603d0eb45198c8a3)) + ## v0.18.1 (2023-07-17) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 7f3476e..dacc703 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "xiaomi-ble" -version = "0.18.1" +version = "0.18.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 cc7dd19..8606526 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.18.1" +__version__ = "0.18.2" __all__ = [ "SLEEPY_DEVICE_MODELS",