From a3cf1bcee847bcc88976d998afd0a32f7aa4d820 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Voron?= Date: Wed, 12 Jul 2023 11:06:47 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version=2012.0.0=20=E2=86=92=2012.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pydantic V2 support ------------------- This version brings Pydantic V2 support. Like FastAPI, it keeps backward-compatibility with Pydantic V1, so you can upgrade safely and at your own pace. Apart your own Pydantic schemas, no changes are needed to your FastAPI Users setup. Thanks @AdamIsrael for the initial work and research 🎉 --- fastapi_users/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastapi_users/__init__.py b/fastapi_users/__init__.py index b480dcee..24668137 100644 --- a/fastapi_users/__init__.py +++ b/fastapi_users/__init__.py @@ -1,6 +1,6 @@ """Ready-to-use and customizable users management for FastAPI.""" -__version__ = "12.0.0" +__version__ = "12.1.0" from fastapi_users import models, schemas # noqa: F401 from fastapi_users.exceptions import InvalidID, InvalidPasswordException