From: Sebastián Ramírez Date: Fri, 7 Jul 2023 17:25:59 +0000 (+0200) Subject: 🔖 Release version 0.100.0 X-Git-Tag: 0.100.0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f8356d9fffcc728062cc4dbfc905882969bd5123;p=thirdparty%2Ffastapi%2Ffastapi.git 🔖 Release version 0.100.0 --- diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 946c38e101..3f5b076ff8 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -2,6 +2,9 @@ ## Latest Changes + +## 0.100.0 + ✨ Support for **Pydantic v2** ✨ Pydantic version 2 has the **core** re-written in **Rust** and includes a lot of improvements and features, for example: diff --git a/fastapi/__init__.py b/fastapi/__init__.py index 5eb3c4de27..e9c3abe012 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.100.0-beta3" +__version__ = "0.100.0" from starlette import status as status