Browse Source

🔖 Release version 0.73.0

pull/4502/head 0.73.0
Sebastián Ramírez 3 years ago
parent
commit
291180bf2d
  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.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).

2
fastapi/__init__.py

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