diff --git a/CHANGELOG.md b/CHANGELOG.md index f03f24c..d71c3a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.3.6 (2022-08-24) +### Fix +* Flake8 error ([`cc9f077`](https://github.com/Bluetooth-Devices/bthome-ble/commit/cc9f077ab9ce3685305a2407b17150a6e7f9bac5)) +* Table format ([`eca5d42`](https://github.com/Bluetooth-Devices/bthome-ble/commit/eca5d42e710c5edadc190f289d88219f43699ee6)) +* Units of voc ([`0f4c773`](https://github.com/Bluetooth-Devices/bthome-ble/commit/0f4c773c02310a3546c2687cf5d18d31677c0549)) + ## v0.3.5 (2022-08-24) ### Fix * Workaround for empty service_uuids ([`2cab081`](https://github.com/Bluetooth-Devices/bthome-ble/commit/2cab081c591de7807c02424819bfca243d360b69)) diff --git a/pyproject.toml b/pyproject.toml index 5256249..ce5a8e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bthome-ble" -version = "0.3.5" +version = "0.3.6" description = "BThome BLE support" authors = ["Ernst Klamer "] license = "MIT" diff --git a/src/bthome_ble/__init__.py b/src/bthome_ble/__init__.py index 8146083..22ff105 100644 --- a/src/bthome_ble/__init__.py +++ b/src/bthome_ble/__init__.py @@ -13,7 +13,7 @@ from .parser import BThomeBluetoothDeviceData -__version__ = "0.3.5" +__version__ = "0.3.6" __all__ = [ "BThomeBluetoothDeviceData",