Skip to content

Commit 98334a6

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 8de3fea + 2748a21 commit 98334a6

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
CHANGELOG
33
=========
44

5+
2.2.1 (2022-06-05)
6+
==================
7+
8+
* Fix: Define a ``default_auto_field`` as part of the app config.
9+
10+
511
2.2 (2022-04-20)
612
================
713

filer/__init__.py

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

16-
__version__ = '2.2'
16+
__version__ = '2.2.1'
1717

1818
default_app_config = 'filer.apps.FilerConfig'

filer/apps.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33

44

55
class FilerConfig(AppConfig):
6+
default_auto_field = 'django.db.models.AutoField'
67
name = 'filer'
78
verbose_name = _("Filer")

0 commit comments

Comments
 (0)