]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
:bookmark: Release 0.27.1 0.27.1
authorSebastián Ramírez <tiangolo@gmail.com>
Mon, 3 Jun 2019 14:44:03 +0000 (18:44 +0400)
committerSebastián Ramírez <tiangolo@gmail.com>
Mon, 3 Jun 2019 14:44:03 +0000 (18:44 +0400)
docs/release-notes.md
fastapi/__init__.py

index f87bf93657a2051a7e015af7f09b0ab40506517a..05ab7a12ec51287a99b9b86ea7bc1500eb17164f 100644 (file)
@@ -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).
 
index 6d47165dcb978ee3670f50ad87395599b4e62740..a37c38c710e3697246c3297e68152bf6fbf31658 100644 (file)
@@ -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