diff --git a/CHANGELOG.md b/CHANGELOG.md index e8300ba..15095ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.17.5 (2023-02-07) +### Fix +* Change device bytes to len 2 ([#42](https://github.com/Bluetooth-Devices/oralb-ble/issues/42)) ([`006d94a`](https://github.com/Bluetooth-Devices/oralb-ble/commit/006d94a195e7f39b38185478377c7512e1dfa0a5)) + ## v0.17.4 (2023-02-06) ### Fix * Bump commitlint-github-action ([#41](https://github.com/Bluetooth-Devices/oralb-ble/issues/41)) ([`9940fab`](https://github.com/Bluetooth-Devices/oralb-ble/commit/9940fab11d3dccbdd19ba93b53b0b9ffc71a89cf)) diff --git a/pyproject.toml b/pyproject.toml index 443c80b..3275431 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "oralb-ble" -version = "0.17.4" +version = "0.17.5" description = "Bluetooth library for Oral B devices" authors = ["J. Nick Koston "] license = "MIT" diff --git a/src/oralb_ble/__init__.py b/src/oralb_ble/__init__.py index 71f7125..ab1a947 100644 --- a/src/oralb_ble/__init__.py +++ b/src/oralb_ble/__init__.py @@ -21,7 +21,7 @@ from .parser import OralBBinarySensor, OralBBluetoothDeviceData, OralBSensor -__version__ = "0.17.4" +__version__ = "0.17.5" __all__ = [ "OralBSensor",