From: Sebastián Ramírez Date: Sat, 18 Jan 2020 17:06:47 +0000 (+0100) Subject: :bookmark: Release version 0.47.1 X-Git-Tag: 0.47.1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a0858983096cad68c1de7d67085b547354990791;p=thirdparty%2Ffastapi%2Ffastapi.git :bookmark: Release version 0.47.1 --- diff --git a/docs/release-notes.md b/docs/release-notes.md index 8071b5da1d..e9b8ae3337 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Latest changes +## 0.47.1 + * Fix model filtering in `response_model`, cloning sub-models. PR [#889](https://github.com/tiangolo/fastapi/pull/889). * Fix FastAPI serialization of Pydantic models using ORM mode blocking the event loop. PR [#888](https://github.com/tiangolo/fastapi/pull/888). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index dfc99d104f..f5261586e1 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.47.0" +__version__ = "0.47.1" from starlette.background import BackgroundTasks