From: Sebastián Ramírez Date: Tue, 14 Mar 2023 02:27:11 +0000 (+0100) Subject: 🔖 Release version 0.94.1 X-Git-Tag: 0.94.1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ef176c663195489b44030bfe1fb94a317762c8d5;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.94.1 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 261e2f6970..118ee1dc7e 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -2,6 +2,11 @@ ## Latest Changes + +## 0.94.1 + +### Fixes + * 🎨 Fix types for lifespan, upgrade Starlette to 0.26.1. PR [#9245](https://github.com/tiangolo/fastapi/pull/9245) by [@tiangolo](https://github.com/tiangolo). ## 0.94.0 diff --git a/fastapi/__init__.py b/fastapi/__init__.py index e71b648f9d..05da7b759c 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.94.0" +__version__ = "0.94.1" from starlette import status as status