From 0e975c9b95c1b4387fcb30eb33f6d946efc086ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Voron?= Date: Mon, 16 Jan 2023 11:48:32 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version=2010.2.1=20=E2=86=92=2010.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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`. --- 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 1c81019f..a2762f79 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__ = "10.2.1" +__version__ = "10.3.0" from fastapi_users import models, schemas # noqa: F401 from fastapi_users.exceptions import InvalidID, InvalidPasswordException