diff --git a/docs/release-notes.md b/docs/release-notes.md index 28b7874c3..ce4554c53 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Next release +## 0.9.1 + * Document receiving Multiple values with the same query parameter and Duplicate headers. PR #95. ## 0.9.0 diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 99277ad01..2db3339db 100644 --- a/fastapi/__init__.py +++ b/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