diff --git a/CHANGELOG.md b/CHANGELOG.md index ace53d0..2a715ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v3.6.0 (2024-03-02) + +### Feature + +* Verify packet is not an older packet ([#112](https://github.com/Bluetooth-Devices/bthome-ble/issues/112)) ([`113e49d`](https://github.com/Bluetooth-Devices/bthome-ble/commit/113e49df1460ea407202e5ca93ff170d6b813b75)) + ## v3.5.0 (2024-01-18) ### Feature diff --git a/pyproject.toml b/pyproject.toml index 3043831..273d18b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bthome-ble" -version = "3.5.0" +version = "3.6.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 717f848..116151c 100644 --- a/src/bthome_ble/__init__.py +++ b/src/bthome_ble/__init__.py @@ -15,7 +15,7 @@ from .parser import BTHomeBluetoothDeviceData -__version__ = "3.5.0" +__version__ = "3.6.0" __all__ = [ "BinarySensorDeviceClass",