Releases: mark9064/factorio-rcon-py
Releases · mark9064/factorio-rcon-py
2.1.3 release
2.1.2 release
- Fix 3.8 support (contributed by @black-sliver, thanks!)
2.1.1 release
- Support PEP 561 (type checking using this library) (thanks to @desaleo for this fix!)
2.1.0 release
- Support for sync/async context managers #6 (thanks to De Sa Léo!)
- Bump Python version to 3.8+
- Bump anyio version
2.0.1 hotfix
- Fixed crash on import when running without anyio
2.0.0 release
- Full type hints
- Docstrings better detail exceptions raised and behaviour
- Better performance when dealing with long responses
- Removal of socket lock, instead this is now better documented
- Handling of null bytes in responses is improved
- Construct is no longer a dependency
receive_packets
renamed toreceive_packet
to reflect new behaviour- Dependency on anyio for async is now handled formally
- Migrated to pyproject.toml style packaging
- Relicensed to LGPLv2.1
1.2.1 release
- Async client updated to support anyio 2.x
1.2.0 release
- New exception hierarchy allowing proper control over error conditions
- A close method is now available for closing the connection to the RCON server
1.1.2 release
- Client.connect() now always raises ConnectionError, as before
1.1.1 release
- Updated README for anyio usage