From 4c3cf31730f992522325ca0fc8361b279dd6d49f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sun, 14 Apr 2019 22:14:20 +0400 Subject: [PATCH] :bookmark: Release 0.15.0, multi-file uploads --- docs/release-notes.md | 4 ++++ fastapi/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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