From: Sebastián Ramírez Date: Sun, 14 Apr 2019 18:14:20 +0000 (+0400) Subject: :bookmark: Release 0.15.0, multi-file uploads X-Git-Tag: 0.15.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4c3cf31730f992522325ca0fc8361b279dd6d49f;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.15.0, multi-file uploads --- diff --git a/docs/release-notes.md b/docs/release-notes.md index c285767e90..a425eb2998 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 033284a0bf..8e3474ddf9 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