From f612d43e16b01fcaeacd7e05935a31f92027cc7b Mon Sep 17 00:00:00 2001 From: Ghiffari <82567140+ghiffari-agsarya@users.noreply.github.com> Date: Thu, 25 Sep 2025 02:14:57 +0000 Subject: [PATCH] chore: bump version to 1.4.3 and update pyjwt to 2.4.0 --- CHANGELOG.rst | 5 +++++ iam_python_sdk/__init__.py | 2 +- requirements_dev.txt | 2 +- setup.cfg | 2 +- setup.py | 4 ++-- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b6fca11..1d8998c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ ========= Changelog ========= +1.4.3 (2025-09-25) +------------------ + +* Update pyjwt to 2.4.0 + 1.4.2 (2025-01-08) ------------------ diff --git a/iam_python_sdk/__init__.py b/iam_python_sdk/__init__.py index caf8808..8a7c12c 100644 --- a/iam_python_sdk/__init__.py +++ b/iam_python_sdk/__init__.py @@ -18,7 +18,7 @@ __author__ = """Analytics AccelByte""" __email__ = 'justice-analytics-team@accelbyte.net' -__version__ = '1.4.2' +__version__ = '1.4.3' __all__ = [ 'NewDefaultClient', 'NewAsyncClient', diff --git a/requirements_dev.txt b/requirements_dev.txt index 8052de3..c4f84a7 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -15,7 +15,7 @@ black==21.7b0 backoff==1.11.1 httpx==0.22.0 httpcore==0.14.5 -pyjwt[crypto]==2.2.0 +pyjwt[crypto]==2.4.0 crontab==0.23.0 respx==0.19.2 Flask>=1.0,<2.0 diff --git a/setup.cfg b/setup.cfg index cf806a1..3151fa0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.2 +current_version = 1.4.3 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(rc(?P\d+))? diff --git a/setup.py b/setup.py index 99bdf6c..6ac9223 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ 'backoff==1.11.1', 'httpx==0.22.0', 'httpcore==0.14.5', - 'pyjwt[crypto]==2.2.0', + 'pyjwt[crypto]==2.4.0', 'crontab==0.23.0', 'bitarray==2.3.4', 'mmh3==3.0.0' @@ -24,7 +24,7 @@ test_requirements = ['pytest==6.2.4', 'pytest-asyncio==0.16.0', 'respx==0.19.2'] optional_requirements = { - "flask": ["Flask>=1.0,<2.0"], + "flask": ["Flask>=1.0,<3.0"], "fastapi": ["fastapi<=0.90.1"] }