diff --git a/src/seahorse/__about__.py b/src/seahorse/__about__.py index cea9772..9db3c47 100644 --- a/src/seahorse/__about__.py +++ b/src/seahorse/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2023-present U.N. Owen # # SPDX-License-Identifier: MIT -__version__ = "1.1.5" +__version__ = "1.1.6b0" diff --git a/src/seahorse/game/io_stream.py b/src/seahorse/game/io_stream.py index 477b7e0..1a93497 100644 --- a/src/seahorse/game/io_stream.py +++ b/src/seahorse/game/io_stream.py @@ -350,8 +350,8 @@ async def stop(task): except asyncio.CancelledError: pass - # Stop TCPSite to close socket and runner - await site.stop() + # Cleanup runner to release socket + await self.runner.cleanup() # Blocking call to the procedure self.event_loop.run_until_complete(stop(task))