]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.12.1, fix responses in include_router 0.12.1
authorSebastián Ramírez <tiangolo@gmail.com>
Fri, 5 Apr 2019 16:08:36 +0000 (20:08 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Fri, 5 Apr 2019 16:08:36 +0000 (20:08 +0400)
docs/release-notes.md
fastapi/__init__.py

index c99dc29af430225381685828570658ba4cd0ed03..5d50cbe1c5677150b28db2def71044cf4c50da3b 100644 (file)
@@ -1,5 +1,7 @@
 ## Next release
 
+## 0.12.1
+
 * Fix bug: handling additional `responses` in `APIRouter.include_router()`. PR <a href="https://github.com/tiangolo/fastapi/pull/140" target="_blank">#140</a>.
 
 * Fix typo in SQL tutorial. PR <a href="https://github.com/tiangolo/fastapi/pull/138" target="_blank">#138</a> by <a href="https://github.com/mostaphaRoudsari" target="_blank">@mostaphaRoudsari</a>.
index c9387f0e01f1540f43e010b288e3da5b87d4b1dc..5a4c9b9714fbccbd94d71064fac03cd4ff94d7bd 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.12.0"
+__version__ = "0.12.1"
 
 from starlette.background import BackgroundTasks