summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2016-09-15 15:10:08 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2016-09-15 15:10:47 +0300
commitd4bce351a4dc15a5eb4be1887999426d005ba2ac (patch)
tree2e3d107852e44aa0b10e4d99d423ffd56d9c5dcd /docs
parent9fa8a833bbc5ed75cbc9f5e3e4aa14ba2279b5dc (diff)
downloadapscheduler-d4bce351a4dc15a5eb4be1887999426d005ba2ac.tar.gz
Added coroutine support for asyncio and Tornado executors (fixes #96, #98)
Diffstat (limited to 'docs')
-rw-r--r--docs/versionhistory.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/versionhistory.rst b/docs/versionhistory.rst
index 4395116..842495d 100644
--- a/docs/versionhistory.rst
+++ b/docs/versionhistory.rst
@@ -7,8 +7,15 @@ APScheduler, see the :doc:`migration section <migration>`.
3.3.0
-----
+* The asyncio and Tornado schedulers can now run jobs targeting coroutine functions
+ (requires Python 3.5; only native coroutines (``async def``) are supported)
+
+* The Tornado scheduler now uses TornadoExecutor as its default executor (see above as for why)
+
* Added ZooKeeper job store (thanks to Jose Ignacio Villar for the patch)
+* Added the ability to execute coroutine functions with asyncio/trollius and Twisted
+
* Improved import logic in ``ref_to_obj()`` to avoid errors in cases where traversing the path with
``getattr()`` would not work (thanks to Jarek Glowacki for the patch)