From 942182923d9fc59a38ce9ec3d29c3880a7845875 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Voron?= Date: Thu, 5 May 2022 11:55:06 +0200 Subject: [PATCH 1/2] Add version guards for DB adapters in prevision of v10 --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1e10b09c..e8d0f28a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -109,16 +109,16 @@ sqlalchemy = [ "fastapi-users-db-sqlalchemy >=1.1.0,<2.0.0", ] sqlalchemy2 = [ - "fastapi-users-db-sqlalchemy >=2.0.0", + "fastapi-users-db-sqlalchemy >=2.0.0,<4.0.0", ] mongodb = [ - "fastapi-users-db-mongodb >=1.1.0", + "fastapi-users-db-mongodb >=1.1.0,<2.0.0", ] tortoise-orm = [ - "fastapi-users-db-tortoise >=1.1.0", + "fastapi-users-db-tortoise >=1.1.0,<2.0.0", ] ormar = [ - "fastapi-users-db-ormar >=1.0.0", + "fastapi-users-db-ormar >=1.0.0,<2.0.0", ] oauth = [ "httpx-oauth >=0.4,<0.7" From b7734fc8b05b10507bc7f29afde1e15956fefe9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Voron?= Date: Thu, 5 May 2022 11:56:39 +0200 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=209.3.1=20=E2=86=92=209.3.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fastapi_users/__init__.py | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fastapi_users/__init__.py b/fastapi_users/__init__.py index 651e81a5..9ba4d40c 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__ = "9.3.1" +__version__ = "9.3.2" 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 e20b1925..10621d39 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 9.3.1 +current_version = 9.3.2 commit = True tag = True