From edc711afe77f2d3959a8f6c423637af709099635 Mon Sep 17 00:00:00 2001 From: Ardian Date: Thu, 7 Nov 2024 12:42:18 +0100 Subject: [PATCH 1/2] fix: `asyncio.set_loop` --- mech_client/interact.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mech_client/interact.py b/mech_client/interact.py index 5db99f1..9d0c9cd 100644 --- a/mech_client/interact.py +++ b/mech_client/interact.py @@ -455,6 +455,7 @@ def wait_for_data_url( # pylint: disable=too-many-arguments :rtype: Any """ loop = asyncio.new_event_loop() + asyncio.set_event_loop(loop) tasks = [] if confirmation_type in ( From 0afa4b93469f3deea03ed60c9abdb196982ea458 Mon Sep 17 00:00:00 2001 From: Ardian Date: Thu, 7 Nov 2024 12:47:50 +0100 Subject: [PATCH 2/2] release: v0.2.18 --- SECURITY.md | 4 ++-- mech_client/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index 8169200..28c7267 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -8,8 +8,8 @@ The following table shows which versions of `mech-client` are currently being su | Version | Supported | |------------| ------------------ | -| `0.2.17` | :white_check_mark: | -| `< 0.2.17` | :x: | +| `0.2.18` | :white_check_mark: | +| `< 0.2.18` | :x: | ## Reporting a Vulnerability diff --git a/mech_client/__init__.py b/mech_client/__init__.py index 7009b7b..68e4699 100644 --- a/mech_client/__init__.py +++ b/mech_client/__init__.py @@ -1,3 +1,3 @@ """Mech client.""" -__version__ = "0.2.17" +__version__ = "0.2.18" diff --git a/pyproject.toml b/pyproject.toml index 3d57f57..dbe881f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mech-client" -version = "0.2.17" +version = "0.2.18" description = "Basic client to interact with a mech" authors = ["David Minarsch "] readme = "README.md"