From 0826ec529915e80c217f1ddc52f76d1c1c71d223 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Voron?= Date: Tue, 21 Sep 2021 08:35:06 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=208.0.0=20=E2=86=92=208.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fastapi_users/__init__.py | 2 +- setup.cfg | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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