diff --git a/CHANGELOG.md b/CHANGELOG.md index ce17719..a0f9e06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.6.0 (2022-07-25) +### Feature +* Add Formaldehyde, Consumable and Voltage sensor ([`8292de7`](https://github.com/Bluetooth-Devices/xiaomi-ble/commit/8292de7425597897d562ea43380af221c661df90)) + ## v0.5.2 (2022-07-25) ### Fix * Add special casing for when illumination is used for a binary sensor instead of a sensor ([`59c5729`](https://github.com/Bluetooth-Devices/xiaomi-ble/commit/59c5729b4c2f39944d61ab65c3aee40c6d041d21)) diff --git a/pyproject.toml b/pyproject.toml index d585a3b..d4a83d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "xiaomi-ble" -version = "0.5.2" +version = "0.6.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 275cd57..cba9ad6 100644 --- a/src/xiaomi_ble/__init__.py +++ b/src/xiaomi_ble/__init__.py @@ -19,7 +19,7 @@ from .parser import XiaomiBluetoothDeviceData -__version__ = "0.5.2" +__version__ = "0.6.0" __all__ = [ "XiaomiBluetoothDeviceData",