Releases: gfmio/asyncio-gevent
Releases · gfmio/asyncio-gevent
v0.2.3
v0.2.2
v0.2.1
What's Changed
- Import CancelledError directly from asyncio by @steverice in #5
- Add GitHub Actions by @gfmio in #6
New Contributors
- @steverice made their first contribution in #5
Full Changelog: v0.2.0...v0.2.1
v0.2.0
Revamp (#3) This PR is largely a rewrite to clean up the implementation, fix some bugs and update the documentation. The asyncio on gevent implementation is now using the default selector-based asyncio event loop together with the gevent selector implementation. The gevent on asyncio implementation is still work-in-progress, but has been split out into several modules. wrap_greenlet is now greenlet_to_future and has been rewritten. wrap_future is now future_to_greenlet and has also been rewritten. Both also accept additional arguments for customising the behaviour of the methods. Finally, the PR adds the helper methods sync_to_async and async_to_sync for converting spawning/blocking functions into coroutines and vice versa.