]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.12.0, add additional responses 0.12.0
authorSebastián Ramírez <tiangolo@gmail.com>
Fri, 5 Apr 2019 10:35:01 +0000 (14:35 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Fri, 5 Apr 2019 10:35:01 +0000 (14:35 +0400)
docs/release-notes.md
fastapi/__init__.py

index 5114008773768c873a08db31a89665bd9fa29f9e..a33e3ecc19d2e2a057401ab49d619111c42056a1 100644 (file)
@@ -1,5 +1,7 @@
 ## Next release
 
+## 0.12.0
+
 * Add additional `responses` parameter to *path operation decorators* to extend responses in OpenAPI (and API docs).
     * It also allows extending existing responses generated from `response_model`, declare other media types (like images), etc.
     * The new documentation is here: <a href="https://fastapi.tiangolo.com/tutorial/additional-responses/" target="_blank">Additional Responses</a>.
index c585c20db142dbe66e9cee0dc88979fcd389c4e1..c9387f0e01f1540f43e010b288e3da5b87d4b1dc 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.11.0"
+__version__ = "0.12.0"
 
 from starlette.background import BackgroundTasks