From 04e7b4125b00d9e6eb2ea47d117bf3e607fc02dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Voron?= Date: Sat, 25 Oct 2025 08:00:45 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version=2014.0.1=20=E2=86=92=2014.0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Announcements ------------- * This is the last release to support Python 3.9 and Pydantic v1. * FastAPI Users is now in maintenance mode.** While we'll continue to provide security updates and dependency maintenance, no new features will be added. We encourage you to explore the project and use it as-is, knowing it will remain stable and secure. Bug fixes and improvements -------------------------- * Bump dependencies: * `email-validator >=1.1.0,<2.4` * `redis >=4.3.3,<8.0.0` --- 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 0c213994..502799d3 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__ = "14.0.1" +__version__ = "14.0.2" from fastapi_users import models, schemas # noqa: F401 from fastapi_users.exceptions import InvalidID, InvalidPasswordException