Bump version 12.0.0 → 12.1.0

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 🎉
This commit is contained in:
François Voron
2023-07-12 11:06:47 +02:00
parent d9924c9e66
commit a3cf1bcee8

View File

@ -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