diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e991f2..ace53d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v3.5.0 (2024-01-18) + +### Feature + +* Add verification of the packet id ([#105](https://github.com/Bluetooth-Devices/bthome-ble/issues/105)) ([`c428f92`](https://github.com/Bluetooth-Devices/bthome-ble/commit/c428f927b8dbc4f02ef006c15932aca5fa74877f)) + ## v3.4.2 (2024-01-17) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 2a89a0f..3043831 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bthome-ble" -version = "3.4.2" +version = "3.5.0" description = "BThome BLE support" authors = ["Ernst Klamer "] license = "MIT" diff --git a/src/bthome_ble/__init__.py b/src/bthome_ble/__init__.py index a4e6088..717f848 100644 --- a/src/bthome_ble/__init__.py +++ b/src/bthome_ble/__init__.py @@ -15,7 +15,7 @@ from .parser import BTHomeBluetoothDeviceData -__version__ = "3.4.2" +__version__ = "3.5.0" __all__ = [ "BinarySensorDeviceClass",