mirror of https://github.com/tiangolo/fastapi.git
🔖 Release 0.7.0, with support for UploadFile
This commit is contained in:
parent
6b6ea0da2e
commit
c14ec50f73
|
|
@ -1,5 +1,7 @@
|
||||||
## Next
|
## Next
|
||||||
|
|
||||||
|
## 0.7.0
|
||||||
|
|
||||||
* Add support for `UploadFile` in `File` parameter annotations.
|
* Add support for `UploadFile` in `File` parameter annotations.
|
||||||
* This includes a file-like interface.
|
* 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>.
|
* 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>.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
|
"""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 .applications import FastAPI
|
||||||
from .routing import APIRouter
|
from .routing import APIRouter
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue