🔖 Release version 0.56.0

This commit is contained in:
Sebastián Ramírez 2020-06-12 00:22:17 +02:00
parent da7826b0eb
commit 072c2bc7f9
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
## Latest changes ## Latest changes
## 0.56.0
* Add support for ASGI `root_path`: * Add support for ASGI `root_path`:
* Use `root_path` internally for mounted applications, so that OpenAPI and the docs UI works automatically without extra configurations and parameters. * Use `root_path` internally for mounted applications, so that OpenAPI and the docs UI works automatically without extra configurations and parameters.
* Add new `root_path` parameter for `FastAPI` applications to provide it in cases where it can be set with the command line (e.g. for Uvicorn and Hypercorn, with the parameter `--root-path`). * Add new `root_path` parameter for `FastAPI` applications to provide it in cases where it can be set with the command line (e.g. for Uvicorn and Hypercorn, with the parameter `--root-path`).

View File

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production""" """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.55.1" __version__ = "0.56.0"
from starlette import status from starlette import status