Bump version 10.2.1 → 10.3.0

Improvements
------------

* Ensure the reset password token can be used only once.
* Change JWT access token structure to use standard `sub` claim instead of `user_id`.
    * ⚠ Existing JWT will be invalidated
* Change verify and reset password tokens structure to use standard `sub` claim instead of `user_id`.
This commit is contained in:
François Voron
2023-01-16 11:48:32 +01:00
parent b18389439a
commit 0e975c9b95

View File

@@ -1,6 +1,6 @@
"""Ready-to-use and customizable users management for FastAPI."""
__version__ = "10.2.1"
__version__ = "10.3.0"
from fastapi_users import models, schemas # noqa: F401
from fastapi_users.exceptions import InvalidID, InvalidPasswordException