diff --git a/README.md b/README.md index e397ff9..63fbfe2 100644 --- a/README.md +++ b/README.md @@ -190,6 +190,8 @@ We use GitHub pull requests. If your PR should produce a new release of authoriz Changelog --------- +* v2.1.1 + * Bump packages. * v2.1.0 * Add account_id from the user to the request. * v2.0.4 diff --git a/setup.py b/setup.py index 7034a1f..343ea5b 100644 --- a/setup.py +++ b/setup.py @@ -5,25 +5,25 @@ with open("README.md", encoding="utf-8") as f: long_description = f.read() -version = "2.1.0" +version = "2.1.1" packages = [ "authorization_django", "authorization_django.extensions", ] requires = [ "Django>=4.2", - "requests>=2.33.1", - "jwcrypto>=1.5.7", + "requests>=2.34.2", + "jwcrypto>=1.5.8", ] tests_require = [ - "pytest>=9.0.2", + "pytest>=9.1.1", "pytest-cov>=7.1.0", "pytest-django>=4.12.0", "requests_mock", ] extended_require = [ - "djangorestframework>=3.17.1", - "drf-spectacular>=0.29.0", + "djangorestframework>=3.17.2", + "drf-spectacular>=0.30.0", ] setup(