Skip to content

Commit 2024233

Browse files
committed
v3.2.0
1 parent da0b800 commit 2024233

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

CHANGELOG.rst

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

4-
**master (unreleased)**
4+
**3.2.0 (Apr 3, 2019)**
55

66
* Feature: Added beta support for django-polymorphic admin (`#86`_)
77
* Feature: Made compatible with Django 2.2 and 3.0. Django 3.0 is still
@@ -11,7 +11,7 @@ Changelog
1111
in Django 2.1+, including the new 'view' permission.
1212
* Fixed: (grappelli) Collapsing inline groups now works for stacked inlines
1313
(thanks `@maldn`_) (`#121`_)
14-
* Fixed: FileFields in deeply nested inlines now works in Django 2.1 (thanks
14+
* Fixed: FileFields in deeply nested inlines now work in Django 2.1+ (thanks
1515
`@btknu`_) (`#111`_, `#127`_)
1616
* Fixed: Use correct translation for 'Delete?' text in templates (thanks
1717
`@kigawas`_) (`#116`_)
@@ -144,4 +144,4 @@ Changelog
144144

145145
.. _#22: https://github.com/theatlantic/django-nested-admin/issues/22
146146
.. _#30: https://github.com/theatlantic/django-nested-admin/issues/30
147-
.. _#43: https://github.com/theatlantic/django-nested-admin/issues/43
147+
.. _#43: https://github.com/theatlantic/django-nested-admin/issues/43

setup.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='django-nested-admin',
13-
version="3.1.3",
13+
version="3.2.0",
1414
install_requires=[
1515
'python-monkey-business>=1.0.0',
1616
'six',
@@ -33,7 +33,14 @@
3333
'Programming Language :: Python :: 3',
3434
'Programming Language :: Python :: 3.4',
3535
'Programming Language :: Python :: 3.5',
36+
'Programming Language :: Python :: 3.6',
37+
'Programming Language :: Python :: 3.7',
3638
'Framework :: Django',
39+
'Framework :: Django :: 1.8',
40+
'Framework :: Django :: 1.11',
41+
'Framework :: Django :: 2.0',
42+
'Framework :: Django :: 2.1',
43+
'Framework :: Django :: 2.2',
3744
],
3845
include_package_data=True,
3946
zip_safe=False,

0 commit comments

Comments
 (0)