diff --git a/fastapi_users/__init__.py b/fastapi_users/__init__.py index b24a8c92..d4eee43c 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.0.2" +__version__ = "0.1.0" 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 97ff572f..737447b9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.2 +current_version = 0.1.0 commit = True tag = True @@ -19,3 +19,4 @@ line_length = 88 multi_line_output = 5 known_standard_library = types known_third_party = pytest,_pytest +