]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.7.0, with support for UploadFile 0.7.0
authorSebastián Ramírez <tiangolo@gmail.com>
Sun, 3 Mar 2019 17:06:42 +0000 (21:06 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Sun, 3 Mar 2019 17:06:42 +0000 (21:06 +0400)
docs/release-notes.md
fastapi/__init__.py

index 8218eb370bae3db265c266dd00f272a4c683435b..3832f9046648c4161cafc714fd34281d44fcc02b 100644 (file)
@@ -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>.
index 4152eed036251ea630e9fc8e8a693900fdc14c1b..c6b0e54403080822288b2ed87b9dcd6c75cc60ef 100644 (file)
@@ -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