Skip to content

Commit

Permalink
Release v3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fdintino committed Dec 20, 2021
1 parent 64e8e6a commit 2554f51
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
@@ -1,6 +1,13 @@
Changelog
=========

**3.4.0 (Dec 20, 2021)**

* Added support for Django 3.2 and 4.0
* Dropped official support for Python 2.7 and Django 1.11. The 3.4.0 release
will still work with python 2.7 and Django 1.11, but it will be the last
release that does so.

**3.3.3 (Dec 17, 2020)**

* Fixed: polymorphic inlines don't work if nested inside non-polymorphic
Expand Down
2 changes: 1 addition & 1 deletion nested_admin/__init__.py
Expand Up @@ -15,7 +15,7 @@
import django.forms.formsets
import monkeybiz

__version__ = '3.3.3'
__version__ = '3.4.0'

# import mapping to objects in other modules
all_by_module = {
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Expand Up @@ -51,12 +51,14 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
],
include_package_data=True,
zip_safe=False,
Expand Down

0 comments on commit 2554f51

Please sign in to comment.