diff --git a/CHANGELOG.md b/CHANGELOG.md index 3dfa94c4b..98800d203 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Security --> -## [unreleased] +## [2.5.0] - 2024-09-01 ### Added * Add migration to include `token_checksum` field in AbstractAccessToken model. * Added compatibility with `LoginRequiredMiddleware` introduced in Django 5.1 diff --git a/oauth2_provider/__init__.py b/oauth2_provider/__init__.py index 3d67cd6bb..50062f87c 100644 --- a/oauth2_provider/__init__.py +++ b/oauth2_provider/__init__.py @@ -1 +1 @@ -__version__ = "2.4.0" +__version__ = "2.5.0" diff --git a/pyproject.toml b/pyproject.toml index 354645b47..002156099 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ dependencies = [ "django >= 4.2", "requests >= 2.13.0", "oauthlib >= 3.2.0", - "jwcrypto >= 0.8.0", + "jwcrypto >= 1.5.0", ] [project.urls]