From: Sebastián Ramírez Date: Wed, 11 Sep 2024 07:46:34 +0000 (+0200) Subject: 🔖 Release version 0.114.1 X-Git-Tag: 0.114.1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=212fd5e247279073dceaba346fd4afc52f627232;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.114.1 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 647b51b197..97f4728152 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.114.1 + ### Refactors * ⚡️ Improve performance in request body parsing with a cache for internal model fields. PR [#12184](https://github.com/fastapi/fastapi/pull/12184) by [@tiangolo](https://github.com/tiangolo). diff --git a/fastapi/__init__.py b/fastapi/__init__.py index dce17360f9..c2ed4859a7 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.0" +__version__ = "0.114.1" from starlette import status as status