diff --git a/CHANGELOG.md b/CHANGELOG.md index 465b44c..87ff639 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v2.3.0 (2022-08-17) +### Feature +* New base sensors ([#27](https://github.com/Bluetooth-Devices/sensor-state-data/issues/27)) ([`b7637bf`](https://github.com/Bluetooth-Devices/sensor-state-data/commit/b7637bf725a12fdf0f358a52c94eda54b89303c6)) + ## v2.2.0 (2022-08-13) ### Feature * Add set_precision convenience method ([#26](https://github.com/Bluetooth-Devices/sensor-state-data/issues/26)) ([`0937284`](https://github.com/Bluetooth-Devices/sensor-state-data/commit/0937284a66bd9b2494817aa0402235cd1635d0f3)) diff --git a/pyproject.toml b/pyproject.toml index 5fdea80..67bc291 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sensor-state-data" -version = "2.2.0" +version = "2.3.0" description = "Models for storing and converting Sensor Data state" authors = ["J. Nick Koston "] license = "Apache Software License 2.0" diff --git a/src/sensor_state_data/__init__.py b/src/sensor_state_data/__init__.py index 8f0f1f2..a7d2728 100644 --- a/src/sensor_state_data/__init__.py +++ b/src/sensor_state_data/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.2.0" +__version__ = "2.3.0" from .base import BaseDeviceClass from .binary_sensor.device_class import BinarySensorDeviceClass