diff --git a/CHANGELOG.md b/CHANGELOG.md index 040d82a23..28c7bc4ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.6.3] 2022-01-11 + +### Fixed +* #1085 Fix for #1083 admin UI search for idtoken results in `django.core.exceptions.FieldError: Cannot resolve keyword 'token' into field.` + +### Added +* #1085 Add admin UI search fields for additional models. + ## [1.6.2] 2022-01-06 **NOTE: This release reverts an inadvertently-added breaking change.** diff --git a/oauth2_provider/__init__.py b/oauth2_provider/__init__.py index 4848693a0..487f0a884 100644 --- a/oauth2_provider/__init__.py +++ b/oauth2_provider/__init__.py @@ -1,7 +1,7 @@ import django -__version__ = "1.6.2" +__version__ = "1.6.3" if django.VERSION < (3, 2): default_app_config = "oauth2_provider.apps.DOTConfig"