From: Sebastián Ramírez Date: Sat, 18 Mar 2023 19:37:42 +0000 (+0100) Subject: 🔖 Release version 0.95.0 X-Git-Tag: 0.95.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d666ccb62216e45ca78643b52c235ba0d2c53986;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.95.0 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index e5fccd0e4a..7a9a09eed9 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -3,6 +3,8 @@ ## Latest Changes +## 0.95.0 + ### Highlights This release adds support for dependencies and parameters using `Annotated` and recommends its usage. ✨ diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 05da7b759c..f06bb64544 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.1" +__version__ = "0.95.0" from starlette import status as status