Browse Source

🔖 Release version 0.53.1

pull/1185/head 0.53.1
Sebastián Ramírez 5 years ago
parent
commit
e6b3b994be
  1. 2
      docs/en/docs/release-notes.md
  2. 2
      fastapi/__init__.py

2
docs/en/docs/release-notes.md

@ -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).

2
fastapi/__init__.py

@ -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…
Cancel
Save