]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.11.0 0.11.0
authorSebastián Ramírez <tiangolo@gmail.com>
Wed, 3 Apr 2019 11:51:44 +0000 (15:51 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Wed, 3 Apr 2019 11:51:44 +0000 (15:51 +0400)
docs/release-notes.md
fastapi/__init__.py

index 0f010a48fb2247e7f3284008b8fbd2eb155eaf45..aef9404b14bcd6d337cddde140d3d0ab110e23bf 100644 (file)
@@ -1,5 +1,7 @@
 ## Next release
 
+## 0.11.0
+
 * Add `auto_error` parameter to security utility functions. Allowing them to be optional. Also allowing to have multiple alternative security schemes that are then checked in a single dependency instead of each one verifying and returning the error to the client automatically when not satisfied. PR <a href="https://github.com/tiangolo/fastapi/pull/134" target="_blank">#134</a>.
 
 * Update <a href="https://fastapi.tiangolo.com/tutorial/sql-databases/#create-a-middleware-to-handle-sessions" target="_blank">SQL Tutorial</a> to close database sessions even when there are exceptions. PR <a href="https://github.com/tiangolo/fastapi/pull/89" target="_blank">#89</a> by <a href="https://github.com/alexiri" target="_blank">@alexiri</a>.
index be0e8c68abda5abb8eb5691ad06d193c2b901e21..c585c20db142dbe66e9cee0dc88979fcd389c4e1 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.10.3"
+__version__ = "0.11.0"
 
 from starlette.background import BackgroundTasks