diff --git a/CHANGELOG.md b/CHANGELOG.md index a07c237..86f88b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.18.0 (2024-02-21) + +### Feature + +* Add brush modes to the parser ([#48](https://github.com/Bluetooth-Devices/oralb-ble/issues/48)) ([`2a55f37`](https://github.com/Bluetooth-Devices/oralb-ble/commit/2a55f375331d5e6b40050fa4230827486b4e2539)) + ## v0.17.6 (2023-03-21) ### Fix * Add retries to polling functionality ([#43](https://github.com/Bluetooth-Devices/oralb-ble/issues/43)) ([`90ab0fa`](https://github.com/Bluetooth-Devices/oralb-ble/commit/90ab0fa99c072bc668897b094c8b6892ebcc2284)) diff --git a/pyproject.toml b/pyproject.toml index 90bb032..254a602 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "oralb-ble" -version = "0.17.6" +version = "0.18.0" 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 ce6727e..4c50918 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.6" +__version__ = "0.18.0" __all__ = [ "OralBSensor",