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