From: Sebastián Ramírez Date: Thu, 13 Apr 2023 19:04:52 +0000 (-0700) Subject: 🔖 Release version 0.95.1 X-Git-Tag: 0.95.1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c81e136d75f5ac4252df740b35551cf2afb4c7f1;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.95.1 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 2b95b167b5..dbe3190d88 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -2,6 +2,9 @@ ## Latest Changes + +## 0.95.1 + ### Fixes * 🐛 Fix using `Annotated` in routers or path operations decorated multiple times. PR [#9315](https://github.com/tiangolo/fastapi/pull/9315) by [@sharonyogev](https://github.com/sharonyogev). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index f06bb64544..e1c2be9903 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.95.0" +__version__ = "0.95.1" from starlette import status as status