diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fa32c3..d917907 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v3.9.0 (2024-05-07) + +### Feature + +* Add button hold event ([#120](https://github.com/Bluetooth-Devices/bthome-ble/issues/120)) ([`49124ab`](https://github.com/Bluetooth-Devices/bthome-ble/commit/49124ab9db18e179aba9fb731ba4ed08e113eff3)) + ## v3.8.1 (2024-03-18) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 2fd82af..d6f28b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bthome-ble" -version = "3.8.1" +version = "3.9.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 4aa5dd0..3499b00 100644 --- a/src/bthome_ble/__init__.py +++ b/src/bthome_ble/__init__.py @@ -15,7 +15,7 @@ from .parser import BTHomeBluetoothDeviceData -__version__ = "3.8.1" +__version__ = "3.9.0" __all__ = [ "BinarySensorDeviceClass",