We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8de3fea + 2748a21 commit 98334a6Copy full SHA for 98334a6
CHANGELOG.rst
@@ -2,6 +2,12 @@
2
CHANGELOG
3
=========
4
5
+2.2.1 (2022-06-05)
6
+==================
7
+
8
+* Fix: Define a ``default_auto_field`` as part of the app config.
9
10
11
2.2 (2022-04-20)
12
================
13
filer/__init__.py
@@ -13,6 +13,6 @@
8. Publish the release and it will automatically release to pypi
14
"""
15
16
-__version__ = '2.2'
+__version__ = '2.2.1'
17
18
default_app_config = 'filer.apps.FilerConfig'
filer/apps.py
@@ -3,5 +3,6 @@
class FilerConfig(AppConfig):
+ default_auto_field = 'django.db.models.AutoField'
name = 'filer'
verbose_name = _("Filer")
0 commit comments