diff --git a/CHANGELOG.md b/CHANGELOG.md index f6b884f..434fd55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v1.6.2 (2024-01-06) + +### Fix + +* fix: missing name (#23) ([`c532926`](https://github.com/Bluetooth-Devices/sensorpush-ble/commit/c5329265e3d753efb27f92e65da6d94148b817d4)) + + ## v1.6.1 (2023-12-29) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 06f8c4e..d097ddd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sensorpush-ble" -version = "1.6.1" +version = "1.6.2" description = "Parser for SensorPush BLE devices" authors = ["J. Nick Koston "] license = "MIT" diff --git a/src/sensorpush_ble/__init__.py b/src/sensorpush_ble/__init__.py index 901f323..21df89b 100644 --- a/src/sensorpush_ble/__init__.py +++ b/src/sensorpush_ble/__init__.py @@ -13,7 +13,7 @@ from .parser import SensorPushBluetoothDeviceData -__version__ = "1.6.1" +__version__ = "1.6.2" __all__ = [ "SensorPushBluetoothDeviceData",