From: Sebastián Ramírez Date: Sat, 27 Apr 2019 13:51:31 +0000 (+0400) Subject: :bookmark: Release 0.20.0 X-Git-Tag: 0.20.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7f673cf4e94667eddf15ef724146e5792d9eb82e;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.20.0 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index a71ac810b1..9da246b888 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Next release +## 0.20.0 + * Upgrade OAuth2: * Upgrade Password flow using Bearer tokens to use the correct HTTP status code 401 `UNAUTHORIZED`, with `WWW-Authenticate` headers. * Update, simplify, and improve all the security docs. diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 8ecf90dfbd..4587704def 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.19.0" +__version__ = "0.20.0" from starlette.background import BackgroundTasks