]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release version 0.27.2 0.27.2
authorSebastián Ramírez <tiangolo@gmail.com>
Mon, 3 Jun 2019 18:03:24 +0000 (22:03 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Mon, 3 Jun 2019 18:03:24 +0000 (22:03 +0400)
docs/release-notes.md
fastapi/__init__.py

index d8fc7d257c4e45369dcff35908f0ab226dfcec09..c17bbdc04e70018de3b6b1d12e95e43fa3a4c7c6 100644 (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
index a37c38c710e3697246c3297e68152bf6fbf31658..a7f60239201bc6804d06bb09630aa3471ee50af5 100644 (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