Fix a bug that caused ready() calls to perpetually hang if a connection was initially opened, but dropped before the ACS could fully be read.
There are minor breaking changes to some usages of `network.aio_run()`; if you do not call this method directly, it should be safe to upgrade; otherwise, there is a minor adjustment that you will need to make to your code:
py
network.aio_run(RunState(RunLevel.RUN_UNTIL_IDLE))
becomes
py
network.aio_run(keep_open=False)