Skip to content

Commit 2554f51

Browse files
committed
Release v3.4.0
1 parent 64e8e6a commit 2554f51

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
**3.4.0 (Dec 20, 2021)**
5+
6+
* Added support for Django 3.2 and 4.0
7+
* Dropped official support for Python 2.7 and Django 1.11. The 3.4.0 release
8+
will still work with python 2.7 and Django 1.11, but it will be the last
9+
release that does so.
10+
411
**3.3.3 (Dec 17, 2020)**
512

613
* Fixed: polymorphic inlines don't work if nested inside non-polymorphic

nested_admin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import django.forms.formsets
1616
import monkeybiz
1717

18-
__version__ = '3.3.3'
18+
__version__ = '3.4.0'
1919

2020
# import mapping to objects in other modules
2121
all_by_module = {

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,14 @@
5151
'Programming Language :: Python :: 3.5',
5252
'Programming Language :: Python :: 3.6',
5353
'Programming Language :: Python :: 3.7',
54+
'Programming Language :: Python :: 3.8',
55+
'Programming Language :: Python :: 3.9',
56+
'Programming Language :: Python :: 3.10',
5457
'Framework :: Django',
55-
'Framework :: Django :: 1.8',
5658
'Framework :: Django :: 1.11',
57-
'Framework :: Django :: 2.0',
58-
'Framework :: Django :: 2.1',
5959
'Framework :: Django :: 2.2',
60+
'Framework :: Django :: 3.2',
61+
'Framework :: Django :: 4.0',
6062
],
6163
include_package_data=True,
6264
zip_safe=False,

0 commit comments

Comments
 (0)