From: Sebastián Ramírez Date: Thu, 18 Aug 2022 21:14:07 +0000 (+0200) Subject: 🔖 Release version 0.79.1 X-Git-Tag: 0.79.1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F4913%2Fhead;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.79.1 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 54a4297d7c..4b4ebee42b 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -2,6 +2,9 @@ ## Latest Changes + +## 0.79.1 + ### Fixes * 🐛 Fix `jsonable_encoder` using `include` and `exclude` parameters for non-Pydantic objects. PR [#2606](https://github.com/tiangolo/fastapi/pull/2606) by [@xaviml](https://github.com/xaviml). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index e5cdbeb09d..abcb219a99 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.79.0" +__version__ = "0.79.1" from starlette import status as status