Bump version 10.2.0 → 10.2.1

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

* Bump `httpx-oauth >=0.4,<0.11`
    * With `httpx-oauth >= 0.10`, the OAuth2 client may be not able to return an email address depending on the OAuth Provider. In this case, the error `OAUTH_NOT_AVAILABLE_EMAIL` is raised during `/callback`. [[Documentation](https://fastapi-users.github.io/fastapi-users/10.2/usage/routes/#get-callback)]
* Enable Python 3.11 support in CI
This commit is contained in:
François Voron
2022-11-04 09:47:33 +01:00
parent e760a8594a
commit 1104460533

View File

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