🔖 Release version 0.27.0

This commit is contained in:
Sebastián Ramírez 2019-05-30 17:48:52 +04:00
parent 6f74c7327b
commit 9da626eb2c
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
## Next release
## 0.27.0
* Fix broken link in docs about OAuth 2.0 with scopes. PR [#275](https://github.com/tiangolo/fastapi/pull/275) by [@dmontagu](https://github.com/dmontagu).
* Refactor param extraction using Pydantic `Field`:

View File

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.26.0"
__version__ = "0.27.0"
from starlette.background import BackgroundTasks