diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 110ccd74c..663e99a23 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -7,6 +7,8 @@ hide: ## Latest Changes +## 0.119.0 + FastAPI now (temporarily) supports both Pydantic v2 models and `pydantic.v1` models at the same time in the same app, to make it easier for any FastAPI apps still using Pydantic v1 to gradually but quickly **migrate to Pydantic v2**. ```Python diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 297d993d6..2091f0d1f 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.118.3" +__version__ = "0.119.0" from starlette import status as status