🔖 Release 0.7.0, with support for UploadFile

This commit is contained in:
Sebastián Ramírez 2019-03-03 21:06:42 +04:00
parent 6b6ea0da2e
commit c14ec50f73
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
## Next
## 0.7.0
* Add support for `UploadFile` in `File` parameter annotations.
* This includes a file-like interface.
* Here's the updated documentation for declaring <a href="https://fastapi.tiangolo.com/tutorial/request-files/#file-parameters-with-uploadfile" target="_blank"> `File` parameters with `UploadFile`</a>.

View File

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.6.4"
__version__ = "0.7.0"
from .applications import FastAPI
from .routing import APIRouter