diff --git a/CHANGELOG.md b/CHANGELOG.md index 54c77d4..f3ce669 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v2.12.2 (2023-07-15) + +### Fix + +* Decryption bug fixed ([`dfb12e6`](https://github.com/Bluetooth-Devices/bthome-ble/commit/dfb12e6d46e29cadaff39b5e9d6625a708502d05)) + ## v2.12.1 (2023-07-07) ### Fix diff --git a/pyproject.toml b/pyproject.toml index f934e82..fe43a4f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bthome-ble" -version = "2.12.1" +version = "2.12.2" description = "BThome BLE support" authors = ["Ernst Klamer "] license = "MIT" diff --git a/src/bthome_ble/__init__.py b/src/bthome_ble/__init__.py index a5d4151..dc5a283 100644 --- a/src/bthome_ble/__init__.py +++ b/src/bthome_ble/__init__.py @@ -15,7 +15,7 @@ from .parser import BTHomeBluetoothDeviceData -__version__ = "2.12.1" +__version__ = "2.12.2" __all__ = [ "BinarySensorDeviceClass",