Skip to content

Commit

Permalink
chore: Bump version for 3.2.3 release (#1498)
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun authored Sep 18, 2024
1 parent ff2602c commit c8a6e1c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,20 @@
CHANGELOG
=========

3.2.3 (2024-09-18)
==================

* fix: Use TypeVar for type-hinting of the user parameter by @payamnj in https://github.com/django-cms/django-filer/pull/1496

** New contributor**

* @payamnj made their first contribution in https://github.com/django-cms/django-filer/pull/1496


3.2.2 (2024-09-09)
==================

* fix: Remove version in to Django<5.1
* fix: Remove version pin to Django<5.1

3.2.1 (2024-09-05)
==================
Expand Down
2 changes: 1 addition & 1 deletion filer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
8. Publish the release and it will automatically release to pypi
"""

__version__ = '3.2.2'
__version__ = '3.2.3'
2 changes: 1 addition & 1 deletion filer/cache.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import typing

from django.db.models import Model
from django.core.cache import cache
from django.db.models import Model


UserModel = typing.TypeVar('UserModel', bound=Model)
Expand Down

0 comments on commit c8a6e1c

Please sign in to comment.