Bump version 12.1.1 → 12.1.2

Bug fixes
---------

* Fix a bug when trying to update user with a `None` password. Thanks @fotinakis 🎉
* Fix static type checking error with `AccessTokenProtocol`. Thanks @Nerixjk 🎉

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

* Bump dependencies
    * `redis >=4.3.3,<6.0.0`
This commit is contained in:
François Voron
2023-08-26 10:23:06 +02:00
parent 1c10319c20
commit ff9fae631c

View File

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