Skip to content

Commit

Permalink
Merge pull request #55 from valory-xyz/fix/async-loop
Browse files Browse the repository at this point in the history
Fix/async loop
  • Loading branch information
0xArdi authored Nov 7, 2024
2 parents 79d3582 + 0afa4b9 commit 5c49d67
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion mech_client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Mech client."""

__version__ = "0.2.17"
__version__ = "0.2.18"
1 change: 1 addition & 0 deletions mech_client/interact.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 5c49d67

Please sign in to comment.