🔖 Release version 0.73.0

This commit is contained in:
Sebastián Ramírez 2022-01-23 23:38:51 +01:00
parent cbe8d552c1
commit 291180bf2d
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
## Latest Changes
## 0.73.0
### Features
* ✨ Add support for declaring `UploadFile` parameters without explicit `File()`. PR [#4469](https://github.com/tiangolo/fastapi/pull/4469) by [@tiangolo](https://github.com/tiangolo). New docs: [Request Files - File Parameters with UploadFile](https://fastapi.tiangolo.com/tutorial/request-files/#file-parameters-with-uploadfile).

View File

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