Browse Source

🔖 Release 0.7.0, with support for UploadFile

pull/65/head 0.7.0
Sebastián Ramírez 6 years ago
parent
commit
c14ec50f73
  1. 2
      docs/release-notes.md
  2. 2
      fastapi/__init__.py

2
docs/release-notes.md

@ -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>.

2
fastapi/__init__.py

@ -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

Loading…
Cancel
Save