diff --git a/CHANGELOG.md b/CHANGELOG.md index 500fff7..1454fe5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v3.4.0 (2024-01-10) + +### Feature + +* Add water storage sensor ([#101](https://github.com/Bluetooth-Devices/bthome-ble/issues/101)) ([`6eb80e0`](https://github.com/Bluetooth-Devices/bthome-ble/commit/6eb80e0e120f7c8ef6ce4b7ee5057ae5356192b3)) + ## v3.3.1 (2023-12-15) ### Fix diff --git a/pyproject.toml b/pyproject.toml index cab66b2..c2c2824 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bthome-ble" -version = "3.3.1" +version = "3.4.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 9250414..f324110 100644 --- a/src/bthome_ble/__init__.py +++ b/src/bthome_ble/__init__.py @@ -15,7 +15,7 @@ from .parser import BTHomeBluetoothDeviceData -__version__ = "3.3.1" +__version__ = "3.4.0" __all__ = [ "BinarySensorDeviceClass",