diff --git a/docs/release-notes.md b/docs/release-notes.md index 8218eb370..3832f9046 100644 --- a/docs/release-notes.md +++ b/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 `File` parameters with `UploadFile`. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 4152eed03..c6b0e5440 100644 --- a/fastapi/__init__.py +++ b/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