We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0bb0ad commit e93779dCopy full SHA for e93779d
CHANGELOG.rst
@@ -1,11 +1,15 @@
1
Changelog
2
=========
3
4
-**3.3.3 (unreleased)**
+**3.3.3 (Dec 17, 2020)**
5
6
* Fixed: polymorphic inlines don't work if nested inside non-polymorphic
7
inlines. Fixes `#183`_.
8
* Officially support Django 3.1
9
+* Fixed: No longer has a ``collections.abc`` DeprecationWarning in python 3.8
10
+* Fixed: ManagementForm validation error bug when parent inlines have a
11
+ ``min_num`` defined and the user does not have add permissions on that
12
+ model.
13
14
.. _#183: https://github.com/theatlantic/django-nested-admin/issues/183
15
nested_admin/__init__.py
@@ -15,7 +15,7 @@
import django.forms.formsets
16
import monkeybiz
17
18
-__version__ = '3.3.2'
+__version__ = '3.3.3'
19
20
# import mapping to objects in other modules
21
all_by_module = {
0 commit comments