From: Sebastián Ramírez Date: Tue, 24 Aug 2021 12:16:09 +0000 (+0200) Subject: 🔖 Release version 0.68.1 X-Git-Tag: 0.68.1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b6e198d314e320256c2ed8b62430b2a42c31cb5;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.68.1 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index f2c89aaaa2..921c2b9926 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -2,6 +2,9 @@ ## Latest Changes + +## 0.68.1 + * ✨ Add support for `read_with_orm_mode`, to support [SQLModel](https://sqlmodel.tiangolo.com/) relationship attributes. PR [#3757](https://github.com/tiangolo/fastapi/pull/3757) by [@tiangolo](https://github.com/tiangolo). ### Translations diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 60f90b80d5..3163626698 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.68.0" +__version__ = "0.68.1" from starlette import status as status