🔖 Release version 0.53.1

This commit is contained in:
Sebastián Ramírez 2020-03-29 22:08:54 +02:00
parent 67f148ff83
commit e6b3b994be
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
## Latest changes
## 0.53.1
* Fix included example after translations refactor. PR [#1182](https://github.com/tiangolo/fastapi/pull/1182).
* Add docs example for `example` in `Field`. Docs at [Body - Fields: JSON Schema extras](https://fastapi.tiangolo.com/tutorial/body-fields/#json-schema-extras). PR [#1106](https://github.com/tiangolo/fastapi/pull/1106) by [@JohnPaton](https://github.com/JohnPaton).
* Fix using recursive models in `response_model`. PR [#1164](https://github.com/tiangolo/fastapi/pull/1164) by [@voegtlel](https://github.com/voegtlel).

View File

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