From: Sebastián Ramírez Date: Fri, 22 Mar 2019 17:52:37 +0000 (+0400) Subject: :bookmark: Release 0.9.1, multi value/duplicate query/header X-Git-Tag: 0.9.1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9778542ba65a5768fef74624f7d02443e908fab5;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.9.1, multi value/duplicate query/header --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 28b7874c30..ce4554c53c 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 99277ad010..2db3339dbc 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