From: Sebastián Ramírez Date: Mon, 22 Apr 2019 17:08:43 +0000 (+0400) Subject: :bookmark: Release 0.18.0 X-Git-Tag: 0.18.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8880c4cb033572c9d97c9c79b44fcd15d2128389;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.18.0 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index ac859b5811..aa07e3c6b9 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Next release +## 0.18.0 + * Add docs for HTTP Basic Auth. PR #177. * Upgrade HTTP Basic Auth handling with automatic headers (automatic browser login prompt). PR #175. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index e72650d929..686cad6cef 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.17.0" +__version__ = "0.18.0" from starlette.background import BackgroundTasks