Browse Source

🔖 Release version 0.119.0

pull/13940/merge 0.119.0
Sebastián Ramírez 5 days ago
parent
commit
2e721e1b02
  1. 2
      docs/en/docs/release-notes.md
  2. 2
      fastapi/__init__.py

2
docs/en/docs/release-notes.md

@ -7,6 +7,8 @@ hide:
## Latest Changes ## 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**. 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 ```Python

2
fastapi/__init__.py

@ -1,6 +1,6 @@
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production""" """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 from starlette import status as status

Loading…
Cancel
Save