diff --git a/CHANGELOG.md b/CHANGELOG.md index dabdbed..6daa25e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.7.0 (2022-09-16) +### Feature +* Add support for CGDN1 alternative device type ([#18](https://github.com/Bluetooth-Devices/qingping-ble/issues/18)) ([`ab78277`](https://github.com/Bluetooth-Devices/qingping-ble/commit/ab782774b31f993e5ffe2f79c6f718141ed784a3)) + ## v0.6.1 (2022-08-25) ### Fix * Use bluetooth_data_tools for short_address ([#16](https://github.com/Bluetooth-Devices/qingping-ble/issues/16)) ([`a2f36d1`](https://github.com/Bluetooth-Devices/qingping-ble/commit/a2f36d1ff042ef0290f9c3faadfa4351ef493d39)) diff --git a/pyproject.toml b/pyproject.toml index 5f2fbe6..802ea1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "qingping-ble" -version = "0.6.1" +version = "0.7.0" description = "Qingping BLE support" authors = ["J. Nick Koston "] license = "MIT" diff --git a/src/qingping_ble/__init__.py b/src/qingping_ble/__init__.py index 5dc0122..d43b875 100644 --- a/src/qingping_ble/__init__.py +++ b/src/qingping_ble/__init__.py @@ -15,7 +15,7 @@ from .parser import QingpingBluetoothDeviceData -__version__ = "0.6.1" +__version__ = "0.7.0" __all__ = [ "QingpingBluetoothDeviceData",