🔖 Release version 0.27.2

This commit is contained in:
Sebastián Ramírez 2019-06-03 22:03:24 +04:00
parent b3bb29afa8
commit e2fadcbc90
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
## Latest changes
## 0.27.2
* Fix path and query parameters receiving `dict` as a valid type. It should be mapped to a body payload. PR [#287](https://github.com/tiangolo/fastapi/pull/287). Updated docs at: [Query parameter list / multiple values with defaults: Using `list`](https://fastapi.tiangolo.com/tutorial/query-params-str-validations/#using-list).
## 0.27.1

View File

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
__version__ = "0.27.1"
__version__ = "0.27.2"
from starlette.background import BackgroundTasks