diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ce2c20..291e265 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v2.12.0 (2022-12-22) +### Feature +* Add utility function to get device_source ([#81](https://github.com/Bluetooth-Devices/bleak-retry-connector/issues/81)) ([`d72ce15`](https://github.com/Bluetooth-Devices/bleak-retry-connector/commit/d72ce150edba658b4d4edb43f3bbd158cba9988f)) + ## v2.11.0 (2022-12-22) ### Feature * Add connection slot manager ([#80](https://github.com/Bluetooth-Devices/bleak-retry-connector/issues/80)) ([`d8bb8d9`](https://github.com/Bluetooth-Devices/bleak-retry-connector/commit/d8bb8d96fb019152fb97e4006a8e6a1d11213a7d)) diff --git a/pyproject.toml b/pyproject.toml index d3cb17d..5d9e7ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bleak-retry-connector" -version = "2.11.0" +version = "2.12.0" description = "A connector for Bleak Clients that handles transient connection failures" authors = ["J. Nick Koston "] license = "MIT" diff --git a/src/bleak_retry_connector/__init__.py b/src/bleak_retry_connector/__init__.py index 6efdbb2..97e97c4 100644 --- a/src/bleak_retry_connector/__init__.py +++ b/src/bleak_retry_connector/__init__.py @@ -2,7 +2,7 @@ from typing import cast -__version__ = "2.11.0" +__version__ = "2.12.0" import asyncio