Skip to content

Commit

Permalink
Bump version 12.0.0 → 12.1.0
Browse files Browse the repository at this point in the history
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 🎉
  • Loading branch information
frankie567 committed Jul 12, 2023
1 parent d9924c9 commit a3cf1bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastapi_users/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit a3cf1bc

Please sign in to comment.