From 2a7ef5504ac4f6233d1e7f54f968804c6f1934fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Mon, 3 Jun 2019 18:44:03 +0400 Subject: [PATCH] :bookmark: Release 0.27.1 --- docs/release-notes.md | 4 +++- fastapi/__init__.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index f87bf9365..05ab7a12e 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,4 +1,6 @@ -## Next release +## Latest changes + +## 0.27.1 * Fix `auto_error=False` handling in `HTTPBearer` security scheme. Do not `raise` when there's an incorrect `Authorization` header if `auto_error=False`. PR [#282](https://github.com/tiangolo/fastapi/pull/282). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 6d47165dc..a37c38c71 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.27.0" +__version__ = "0.27.1" from starlette.background import BackgroundTasks