From b541ad298d9c949bb68e74b1d95a2fa0577f9dde Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 24 Oct 2022 18:32:56 +0000 Subject: [PATCH] 2.4.2 Automatically generated by python-semantic-release --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- src/bleak_retry_connector/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 486a394..519587b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v2.4.2 (2022-10-24) +### Fix +* Missing backoff execution with esp32 ([#58](https://github.com/Bluetooth-Devices/bleak-retry-connector/issues/58)) ([`3229424`](https://github.com/Bluetooth-Devices/bleak-retry-connector/commit/3229424cae6dc7a9052efe080e110327eaa60f4d)) + ## v2.4.1 (2022-10-24) ### Fix * Ensure we back off for longer when out of slots ([#57](https://github.com/Bluetooth-Devices/bleak-retry-connector/issues/57)) ([`efeced3`](https://github.com/Bluetooth-Devices/bleak-retry-connector/commit/efeced3fa36fad7d0659e3ed30a7a150370dc923)) diff --git a/pyproject.toml b/pyproject.toml index 457764d..2c53546 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bleak-retry-connector" -version = "2.4.1" +version = "2.4.2" 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 2282411..a390110 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.4.1" +__version__ = "2.4.2" import asyncio