From: Sebastián Ramírez Date: Tue, 17 Sep 2024 19:07:35 +0000 (+0200) Subject: 🔖 Release version 0.115.0 X-Git-Tag: 0.115.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=40e33e492dbf4af6172997f4e3238a32e56cbe26;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.115.0 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 722bc50084..ea7ac92157 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.115.0 + ### Highlights Now you can declare `Query`, `Header`, and `Cookie` parameters with Pydantic models. 🎉 diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 3925d3603e..7dd74c28f0 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.114.2" +__version__ = "0.115.0" from starlette import status as status