diff --git a/CHANGELOG.md b/CHANGELOG.md index 649fecc..500fff7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v3.3.1 (2023-12-15) + +### Fix + +* No check of encryption counter when bindkey has not been verified ([#97](https://github.com/Bluetooth-Devices/bthome-ble/issues/97)) ([`43f1412`](https://github.com/Bluetooth-Devices/bthome-ble/commit/43f14123b68732f41552d2f198dbbf2323763614)) + ## v3.3.0 (2023-12-13) ### Feature diff --git a/pyproject.toml b/pyproject.toml index f149965..a5a4e1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bthome-ble" -version = "3.3.0" +version = "3.3.1" description = "BThome BLE support" authors = ["Ernst Klamer "] license = "MIT" diff --git a/src/bthome_ble/__init__.py b/src/bthome_ble/__init__.py index 4506c68..9250414 100644 --- a/src/bthome_ble/__init__.py +++ b/src/bthome_ble/__init__.py @@ -15,7 +15,7 @@ from .parser import BTHomeBluetoothDeviceData -__version__ = "3.3.0" +__version__ = "3.3.1" __all__ = [ "BinarySensorDeviceClass",