Skip to content

Commit c8a6e1c

Browse files
authored
chore: Bump version for 3.2.3 release (#1498)
1 parent ff2602c commit c8a6e1c

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.rst

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,20 @@
22
CHANGELOG
33
=========
44

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+
515
3.2.2 (2024-09-09)
616
==================
717

8-
* fix: Remove version in to Django<5.1
18+
* fix: Remove version pin to Django<5.1
919

1020
3.2.1 (2024-09-05)
1121
==================

filer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
8. Publish the release and it will automatically release to pypi
1414
"""
1515

16-
__version__ = '3.2.2'
16+
__version__ = '3.2.3'

filer/cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import typing
22

3-
from django.db.models import Model
43
from django.core.cache import cache
4+
from django.db.models import Model
55

66

77
UserModel = typing.TypeVar('UserModel', bound=Model)

0 commit comments

Comments
 (0)