diff --git a/requirements.txt b/requirements.txt index 125bb5c5..7b8fc5aa 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ httpx_oauth==0.13.0 makefun==1.15.1 passlib[bcrypt]==1.7.4 pydantic>=2.0.0,<3.0.0 -pyjwt[crypto]==2.10.1 +pyjwt[crypto]==2.12.1 python-dotenv==1.0.0 python-multipart==0.0.22 sqlalchemy==2.0.20 diff --git a/setup.py b/setup.py index 47789b4a..77a7b65f 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def get_version(version_file: str) -> str: "fastapi >=0.65.2", "passlib[bcrypt] ==1.7.4", "email-validator >=1.1.0,<2.1", - "pyjwt[crypto] ==2.10.1", + "pyjwt[crypto] ==2.12.1", "python-multipart ==0.0.22", "makefun >=1.11.2,<2.0.0", "pydantic>=2.0.0,<3.0.0", diff --git a/src/filuta_fastapi_users/__init__.py b/src/filuta_fastapi_users/__init__.py index ec772965..79bc37ac 100644 --- a/src/filuta_fastapi_users/__init__.py +++ b/src/filuta_fastapi_users/__init__.py @@ -1,6 +1,6 @@ """Ready-to-use and customizable users management for FastAPI.""" -__version__ = "12.1.1+10" +__version__ = "12.1.2" from filuta_fastapi_users import models, schemas # noqa: F401 from filuta_fastapi_users.exceptions import InvalidID, InvalidPasswordException diff --git a/tests/test_package.py b/tests/test_package.py index 1a9f712d..7d0db873 100644 --- a/tests/test_package.py +++ b/tests/test_package.py @@ -6,7 +6,7 @@ def test_import() -> None: def test_version() -> None: - assert __version__ == "12.1.1+10" + assert __version__ == "12.1.2" def test_global_fixture(dummy_fixture: int) -> None: