From: Sebastián Ramírez Date: Sat, 7 Jan 2023 17:17:10 +0000 (+0400) Subject: 🔖 Release version 0.89.0 X-Git-Tag: 0.89.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=69bd7d8501fe77601ebd67f55b39596fdd1e3792;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.89.0 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index dcbc0254a1..cdafa68998 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.89.0 + ### Features * ✨ Add support for function return type annotations to declare the `response_model`. Initial PR [#1436](https://github.com/tiangolo/fastapi/pull/1436) by [@uriyyo](https://github.com/uriyyo). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 037d9804b5..bda10f0436 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.88.0" +__version__ = "0.89.0" from starlette import status as status