diff --git a/CHANGELOG.md b/CHANGELOG.md index ce0aac4..c18037f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v1.6.2 (2023-07-07) + +### Fix + +* Ensure events are only kept for a single update cycle ([#18](/~https://github.com/Bluetooth-Devices/bluetooth-sensor-state-data/issues/18)) ([`907172c`](/~https://github.com/Bluetooth-Devices/bluetooth-sensor-state-data/commit/907172c9c0320f9b17463a605f42add48688d43d)) + ## v1.6.1 (2023-02-06) ### Fix * Make changed_manufacturer_data aware of multiple sources ([#15](/~https://github.com/Bluetooth-Devices/bluetooth-sensor-state-data/issues/15)) ([`91206b5`](/~https://github.com/Bluetooth-Devices/bluetooth-sensor-state-data/commit/91206b59745847714d3e366f2983c8b1f5ce65b0)) diff --git a/pyproject.toml b/pyproject.toml index 9f24d5f..f8a894e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bluetooth-sensor-state-data" -version = "1.6.1" +version = "1.6.2" description = "Models for storing and converting Bluetooth Sensor State Data" authors = ["J. Nick Koston "] license = "Apache Software License 2.0" diff --git a/src/bluetooth_sensor_state_data/__init__.py b/src/bluetooth_sensor_state_data/__init__.py index 46f4185..7f74570 100644 --- a/src/bluetooth_sensor_state_data/__init__.py +++ b/src/bluetooth_sensor_state_data/__init__.py @@ -1,6 +1,6 @@ from __future__ import annotations -__version__ = "1.6.1" +__version__ = "1.6.2" from abc import abstractmethod