]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release version 0.42.0: Answer to the Ultimate Question of Life, the Unive... 0.42.0
authorSebastián Ramírez <tiangolo@gmail.com>
Wed, 9 Oct 2019 18:16:45 +0000 (13:16 -0500)
committerSebastián Ramírez <tiangolo@gmail.com>
Wed, 9 Oct 2019 18:16:45 +0000 (13:16 -0500)
docs/release-notes.md
fastapi/__init__.py

index daeb5031b453b49d2e572995cc406f9ae267b2e8..8af3a3b7d2f884742567a3dd72b8e724d6dbe5f9 100644 (file)
@@ -1,5 +1,7 @@
 ## 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.
index 76c25d5055f6910680ae4f06ef897e2d32e47897..61d981fea93529278e3f7dcd062b1cbd7bb6baa2 100644 (file)
@@ -1,6 +1,6 @@
 """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