diff --git a/CHANGELOG.md b/CHANGELOG.md index 74fa2c6..24132fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.3.3 + +* Increased maximum allowed version of Cryptography library. + Now it requires cryptography < 47. + ## 0.3.2 * Increased maximum allowed version of Cryptography library. diff --git a/auth_tkt/__init__.py b/auth_tkt/__init__.py index 758efc4..cb21844 100644 --- a/auth_tkt/__init__.py +++ b/auth_tkt/__init__.py @@ -1,2 +1,2 @@ __doc__ = 'Python implementation of mod_auth_tkt cookies' -__version__ = '0.3.2' +__version__ = '0.3.3' diff --git a/requirements.txt b/requirements.txt index a311d76..f4341f1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -cryptography < 46 +cryptography < 47 diff --git a/setup.py b/setup.py index a2824ce..233b1e1 100644 --- a/setup.py +++ b/setup.py @@ -30,5 +30,5 @@ 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', ], - install_requires=['cryptography < 46'] + install_requires=['cryptography < 47'] )