diff --git a/fastapi_users/__init__.py b/fastapi_users/__init__.py index 1673f1f2..5043772d 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__ = "8.0.0" +__version__ = "8.1.0" from fastapi_users import models # noqa: F401 from fastapi_users.fastapi_users import FastAPIUsers # noqa: F401 diff --git a/setup.cfg b/setup.cfg index c1917c77..71e3632e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 8.0.0 +current_version = 8.1.0 commit = True tag = True @@ -26,11 +26,11 @@ ignore_missing_imports = True [tool:pytest] addopts = --ignore=test_build.py -markers = +markers = authentication db fastapi_users - manager - jwt + manager + jwt oauth router