Skip to content

Commit

Permalink
Bump version 10.3.0 → 10.4.0
Browse files Browse the repository at this point in the history
New features
------------

* SQLAlchemy 2.0 support [[Documentation](https://fastapi-users.github.io/fastapi-users/10.4/configuration/databases/sqlalchemy/)]
    * If you need to stay on SQLAlchemy 1.4, you can pin this dependency: `fastapi-users-db-sqlalchemy<5.0.0`
* Allow to set `is_verified` flag to `True` by default after OAuth registration [[Documentation](https://fastapi-users.github.io/fastapi-users/10.4/configuration/oauth/#set-is_verified-to-true-by-default)]

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

* Bump dependencies
    * `httpx-oauth >=0.4,<0.12`
  • Loading branch information
frankie567 committed Feb 13, 2023
1 parent 9b57fa2 commit 7fbab34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastapi_users/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Ready-to-use and customizable users management for FastAPI."""

__version__ = "10.3.0"
__version__ = "10.4.0"

from fastapi_users import models, schemas # noqa: F401
from fastapi_users.exceptions import InvalidID, InvalidPasswordException
Expand Down

0 comments on commit 7fbab34

Please sign in to comment.