diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f8938e..382b2e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.1.2 (2023-06-16) + +### Fix + +* Fix condition, only show warning for payload >2 ([`453b065`](https://github.com/sairon/rapt-ble/commit/453b065171c93018d0c7b6a9111e21cfb3988606)) + ## v0.1.1 (2023-05-18) ### Fix * Document v2 payload, remove warning ([`7bef92f`](https://github.com/sairon/rapt-ble/commit/7bef92fc3c1439a1d2c9180411aa695883c954a3)) diff --git a/pyproject.toml b/pyproject.toml index 35d376c..d7ecfd2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "rapt-ble" -version = "0.1.1" +version = "0.1.2" description = "Parser for the RAPT Pill hydrometer BLE packets." authors = ["Jan Čermák "] license = "MIT" diff --git a/src/rapt_ble/__init__.py b/src/rapt_ble/__init__.py index 37a2aaf..bf9efd3 100644 --- a/src/rapt_ble/__init__.py +++ b/src/rapt_ble/__init__.py @@ -5,7 +5,7 @@ from .parser import RAPTPillBluetoothDeviceData -__version__ = "0.1.1" +__version__ = "0.1.2" __all__ = [ "DeviceClass",