]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release version 0.22.0 0.22.0
authorSebastián Ramírez <tiangolo@gmail.com>
Thu, 16 May 2019 14:09:11 +0000 (18:09 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Thu, 16 May 2019 14:09:11 +0000 (18:09 +0400)
docs/release-notes.md
fastapi/__init__.py

index eb8506069088aa54348cc43901466a1d6843783b..489b06fd9319a7b2c82d89953132214f4c8a414b 100644 (file)
@@ -1,5 +1,7 @@
 ## Next release
 
+## 0.22.0
+
 * Add support for `dependencies` parameter:
     * A parameter in *path operation decorators*, for dependencies that should be executed but the return value is not important or not used in the *path operation function*.
     * A parameter in the `.include_router()` method of FastAPI applications and routers, to include dependencies that should be executed in each *path operation* in a router.
index 8ee9d8cf39e35aca050000ad1aa82bf214b68a15..d27352161d06fbcb72d700eee8666be85946965a 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.21.0"
+__version__ = "0.22.0"
 
 from starlette.background import BackgroundTasks