]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.13.0 0.13.0
authorSebastián Ramírez <tiangolo@gmail.com>
Tue, 9 Apr 2019 19:38:11 +0000 (23:38 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Tue, 9 Apr 2019 19:38:11 +0000 (23:38 +0400)
docs/release-notes.md
fastapi/__init__.py

index 28b51ff40a1911b6a601318f8e6929cc8ce83bbe..d367a44b8c6c38489545d7cc2a584e053539110c 100644 (file)
@@ -1,5 +1,7 @@
 ## Next release
 
+## 0.13.0
+
 * Improve/upgrade OAuth2 scopes support with `SecurityScopes`:
     * `SecurityScopes` can be declared as a parameter like `Request`, to get the scopes of all super-dependencies/dependants.
     * Improve `Security` handling, merging scopes when declaring `SecurityScopes`.
index 5a4c9b9714fbccbd94d71064fac03cd4ff94d7bd..e77c674f0e45ecef24073c98f98b1f2429cbe369 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.12.1"
+__version__ = "0.13.0"
 
 from starlette.background import BackgroundTasks