]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
🔖 Release version 0.114.0 0.114.0
authorSebastián Ramírez <tiangolo@gmail.com>
Fri, 6 Sep 2024 17:41:13 +0000 (19:41 +0200)
committerSebastián Ramírez <tiangolo@gmail.com>
Fri, 6 Sep 2024 17:41:13 +0000 (19:41 +0200)
docs/en/docs/release-notes.md
fastapi/__init__.py

index 94f494375ea7344c1753da92a4c369c1b1205456..557498278daf47e5900e881ddeb3efaf271cbc38 100644 (file)
@@ -7,6 +7,8 @@ hide:
 
 ## Latest Changes
 
+## 0.114.0
+
 You can restrict form fields to only include those declared in a Pydantic model and forbid any extra field sent in the request using Pydantic's `model_config = {"extra": "forbid"}`:
 
 ```python
index f785f81cd62740c042baf5aecda86adb98f783e4..dce17360f9397b64b6baf35dc8c1f880538d9395 100644 (file)
@@ -1,6 +1,6 @@
 """FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
 
-__version__ = "0.113.0"
+__version__ = "0.114.0"
 
 from starlette import status as status