Bug Fixes
- Bump python-semantic-release
([90](https://github.com/Bluetooth-Devices/bleak-retry-connector/pull/90),
[`c401988`](https://github.com/Bluetooth-Devices/bleak-retry-connector/commit/c4019883c9bad3f91a20029e8adf35962a59a488))
- Lint ([89](https://github.com/Bluetooth-Devices/bleak-retry-connector/pull/89),
[`c3b5ff8`](https://github.com/Bluetooth-Devices/bleak-retry-connector/commit/c3b5ff8870b8a5c6cb7972d9e1a0ca677cc0c78d))
- Typing for generic BleakClient classes and the retry_bluetooth_connection_error decorator
([86](https://github.com/Bluetooth-Devices/bleak-retry-connector/pull/86),
[`8ddf242`](https://github.com/Bluetooth-Devices/bleak-retry-connector/commit/8ddf2426ff2fc5274dc2e8a905233a2c30f57fbb))
* fix: typing for the generic BleakClient client class
Using a bound TypeVar we can ensure that any client class we are dealing with is either BleakClient
or a descendant of it and that type then stays consistent throughout the lifecycle.
Signed-off-by: Felix Kaechele <felixkaechele.ca>
* fix: typing for the retry_bluetooth_connection_error decorator
Use TypeVar together with ParamVar to drop the use of the unsafe cast operation.
---------
Co-authored-by: J. Nick Koston <nickkoston.org>
Chores
- Drop Python 3.9 support
([88](https://github.com/Bluetooth-Devices/bleak-retry-connector/pull/88),
[`58f9958`](https://github.com/Bluetooth-Devices/bleak-retry-connector/commit/58f9958785b40d2fbade39ef7f56dab931f888a6))
BREAKING CHANGE: In preparation for the use of Python 3.10 typing features such as ParamSpec, which
is unavailable on Python 3.9.
Following the schema of supporting the current and one previous Python release this drops support
for Python 3.9.
Signed-off-by: Felix Kaechele <felixkaechele.ca>
- Update pre-commit hooks
([87](https://github.com/Bluetooth-Devices/bleak-retry-connector/pull/87),
[`fd08a1c`](https://github.com/Bluetooth-Devices/bleak-retry-connector/commit/fd08a1cf76ce012feadcf4a491b0c31f346b783b))
Co-authored-by: J. Nick Koston <nickkoston.org>
Breaking Changes
- In preparation for the use of Python 3.10 typing features such as ParamSpec, which is unavailable
on Python 3.9.