File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 2
2
CHANGELOG
3
3
=========
4
4
5
+ 3.2.3 (2024-09-18)
6
+ ==================
7
+
8
+ * fix: Use TypeVar for type-hinting of the user parameter by @payamnj in https://github.com/django-cms/django-filer/pull/1496
9
+
10
+ ** New contributor**
11
+
12
+ * @payamnj made their first contribution in https://github.com/django-cms/django-filer/pull/1496
13
+
14
+
5
15
3.2.2 (2024-09-09)
6
16
==================
7
17
8
- * fix: Remove version in to Django<5.1
18
+ * fix: Remove version pin to Django<5.1
9
19
10
20
3.2.1 (2024-09-05)
11
21
==================
Original file line number Diff line number Diff line change 13
13
8. Publish the release and it will automatically release to pypi
14
14
"""
15
15
16
- __version__ = '3.2.2 '
16
+ __version__ = '3.2.3 '
Original file line number Diff line number Diff line change 1
1
import typing
2
2
3
- from django .db .models import Model
4
3
from django .core .cache import cache
4
+ from django .db .models import Model
5
5
6
6
7
7
UserModel = typing .TypeVar ('UserModel' , bound = Model )
You can’t perform that action at this time.
0 commit comments