diff --git a/CHANGELOG.md b/CHANGELOG.md index f9b3691..fbce1fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.2.1 (2022-08-11) +### Fix +* Publication ([#3](https://github.com/Bluetooth-Devices/qingping-ble/issues/3)) ([`73e6a09`](https://github.com/Bluetooth-Devices/qingping-ble/commit/73e6a09dfe5480a889c6fac9dcf0933d6adda455)) + ## v0.2.0 (2022-08-11) ### Feature * Add support for all the known sensors ([#2](https://github.com/Bluetooth-Devices/qingping-ble/issues/2)) ([`32ae208`](https://github.com/Bluetooth-Devices/qingping-ble/commit/32ae2085be23ec93ee0a92aa24a2da4f3e045e11)) diff --git a/pyproject.toml b/pyproject.toml index 459441c..70fbfc6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "qingping-ble" -version = "0.2.0" +version = "0.2.1" 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 1e899c4..afb69bd 100644 --- a/src/qingping_ble/__init__.py +++ b/src/qingping_ble/__init__.py @@ -15,7 +15,7 @@ from .parser import QingpingBluetoothDeviceData -__version__ = "0.2.0" +__version__ = "0.2.1" __all__ = [ "QingpingBluetoothDeviceData",