## Latest changes
+## 0.42.0
+
* Add dependencies with `yield`, a.k.a. exit steps, context managers, cleanup, teardown, ...
* This allows adding extra code after a dependency is done. It can be used, for example, to close database connections.
* Dependencies with `yield` can be normal or `async`, **FastAPI** will run normal dependencies in a threadpool.
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
-__version__ = "0.41.0"
+__version__ = "0.42.0"
from starlette.background import BackgroundTasks