diff --git a/CHANGELOG.md b/CHANGELOG.md index 820f7a08..8dd64cc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ We follow [Semantic Versions](https://semver.org/) starting at the `0.14.0` rele ### Bug Fixes ### Features +## 1.5.1 (2023-12-04) + +### Bug Fixes + +- Fixes errors in migrations [#406](https://github.com/jazzband/django-eav2/issues/406) + + ## 1.5.0 (2023-11-08) ### Bug Fixes diff --git a/eav/queryset.py b/eav/queryset.py index b7797078..c3c08019 100644 --- a/eav/queryset.py +++ b/eav/queryset.py @@ -22,7 +22,7 @@ from functools import wraps from itertools import count -from django.core.exceptions import FieldDoesNotExist, ObjectDoesNotExist +from django.core.exceptions import ObjectDoesNotExist from django.db.models import Case, IntegerField, Q, When from django.db.models.query import QuerySet from django.db.utils import NotSupportedError