🔖 Release 0.9.1, multi value/duplicate query/header

This commit is contained in:
Sebastián Ramírez 2019-03-22 21:52:37 +04:00
parent 34c34c68d2
commit 9778542ba6
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
## Next release
## 0.9.1
* Document receiving <a href="https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#query-parameter-list-multiple-values" target="_blank">Multiple values with the same query parameter</a> and <a href="https://fastapi.tiangolo.com/tutorial/header-params/#duplicate-headers" target="_blank">Duplicate headers</a>. PR <a href="https://github.com/tiangolo/fastapi/pull/95" target="_blank">#95</a>.
## 0.9.0

View File

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.9.0"
__version__ = "0.9.1"
from .applications import FastAPI
from .datastructures import UploadFile