mirror of https://github.com/tiangolo/fastapi.git
🔖 Release version 0.53.1
This commit is contained in:
parent
67f148ff83
commit
e6b3b994be
|
|
@ -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).
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue