diff --git a/docs/release-notes.md b/docs/release-notes.md index c285767e9..a425eb299 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,9 @@ ## Next release +## 0.15.0 + +* Add support for multiple file uploads (as a single form field). New docs at: Multiple file uploads. PR #158. + * Add docs for: Additional Status Codes. PR #156. ## 0.14.0 diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 033284a0b..8e3474ddf 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.14.0" +__version__ = "0.15.0" from starlette.background import BackgroundTasks