Browse Source

🔖 Release 0.9.1, multi value/duplicate query/header

pull/99/head 0.9.1
Sebastián Ramírez 6 years ago
parent
commit
9778542ba6
  1. 2
      docs/release-notes.md
  2. 2
      fastapi/__init__.py

2
docs/release-notes.md

@ -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

2
fastapi/__init__.py

@ -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

Loading…
Cancel
Save