From e9940922142ef3689b08fffb422987626c2a0c41 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 28 Nov 2023 12:31:32 -0600 Subject: [PATCH 1/2] Remove duplicate line in execute_service (#781) --- aioesphomeapi/client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/aioesphomeapi/client.py b/aioesphomeapi/client.py index 1e81ba7..bfc1554 100644 --- a/aioesphomeapi/client.py +++ b/aioesphomeapi/client.py @@ -1159,7 +1159,6 @@ class APIClient: apiv = self.api_version if TYPE_CHECKING: assert apiv is not None - int_type = "int_" if apiv >= APIVersion(1, 3) else "legacy_int" map_single = USER_SERVICE_MAP_SINGLE map_array = USER_SERVICE_MAP_ARRAY for arg_desc in service.args: From 6a51170e0c3c4659e74ab7be2ce90406453bb4fe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Nov 2023 18:31:49 +0000 Subject: [PATCH 2/2] Bump version to 19.1.8 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 018a051..88e21f1 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ with open(os.path.join(here, "README.rst"), encoding="utf-8") as readme_file: long_description = readme_file.read() -VERSION = "19.1.7" +VERSION = "19.1.8" PROJECT_NAME = "aioesphomeapi" PROJECT_PACKAGE_NAME = "aioesphomeapi" PROJECT_LICENSE = "MIT"