From: Sebastián Ramírez Date: Fri, 26 Apr 2019 09:48:30 +0000 (+0400) Subject: :bookmark: Release 0.19.0 X-Git-Tag: 0.19.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8e3a7699a3cabbe35f2c45b915167c2adf69b476;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release 0.19.0 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 2bb69aeb87..9eddb6babf 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Next release +## 0.19.0 + * Rename *path operation decorator* parameter `content_type` to `response_class`. PR #183. * Add docs: diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 686cad6cef..8ecf90dfbd 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.18.0" +__version__ = "0.19.0" from starlette.background import BackgroundTasks