diff --git a/fastapi_users/__init__.py b/fastapi_users/__init__.py index 87709958..bb6455c0 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__ = "0.3.1" +__version__ = "0.3.2" from fastapi_users.fastapi_users import FastAPIUsers # noqa: F401 from fastapi_users.models import BaseUser # noqa: F401 diff --git a/setup.cfg b/setup.cfg index 87069a2b..f9b9dc9f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.1 +current_version = 0.3.2 commit = True tag = True @@ -21,8 +21,9 @@ known_standard_library = types known_third_party = pytest,_pytest [tool:pytest] -markers = - authentication - db - fastapi_users - router +markers = + authentication + db + fastapi_users + router +