From 9778542ba65a5768fef74624f7d02443e908fab5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 22 Mar 2019 21:52:37 +0400 Subject: [PATCH] :bookmark: Release 0.9.1, multi value/duplicate query/header --- docs/release-notes.md | 2 ++ fastapi/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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