diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c848eb..b5cecad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.19.1 (2023-07-20) + +### Fix + +* Remove some dependencies ([#53](https://github.com/Bluetooth-Devices/xiaomi-ble/issues/53)) ([`9d11d62`](https://github.com/Bluetooth-Devices/xiaomi-ble/commit/9d11d620557ec95d0bdf9112b8cf69e82031a006)) + ## v0.19.0 (2023-07-20) ### Feature diff --git a/pyproject.toml b/pyproject.toml index 3800710..408b78a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "xiaomi-ble" -version = "0.19.0" +version = "0.19.1" 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 6d4fac9..f7be987 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.19.0" +__version__ = "0.19.1" __all__ = [ "SLEEPY_DEVICE_MODELS",