From 20242336c1afab654a5f7f20937df9d5f068f993 Mon Sep 17 00:00:00 2001 From: Frankie Dintino Date: Wed, 3 Apr 2019 15:18:02 -0400 Subject: [PATCH] v3.2.0 --- CHANGELOG.rst | 6 +++--- setup.py | 9 ++++++++- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9ed9487..da6eb9e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,7 @@ Changelog ========= -**master (unreleased)** +**3.2.0 (Apr 3, 2019)** * Feature: Added beta support for django-polymorphic admin (`#86`_) * Feature: Made compatible with Django 2.2 and 3.0. Django 3.0 is still @@ -11,7 +11,7 @@ Changelog in Django 2.1+, including the new 'view' permission. * Fixed: (grappelli) Collapsing inline groups now works for stacked inlines (thanks `@maldn`_) (`#121`_) -* Fixed: FileFields in deeply nested inlines now works in Django 2.1 (thanks +* Fixed: FileFields in deeply nested inlines now work in Django 2.1+ (thanks `@btknu`_) (`#111`_, `#127`_) * Fixed: Use correct translation for 'Delete?' text in templates (thanks `@kigawas`_) (`#116`_) @@ -144,4 +144,4 @@ Changelog .. _#22: https://github.com/theatlantic/django-nested-admin/issues/22 .. _#30: https://github.com/theatlantic/django-nested-admin/issues/30 -.. _#43: https://github.com/theatlantic/django-nested-admin/issues/43 \ No newline at end of file +.. _#43: https://github.com/theatlantic/django-nested-admin/issues/43 diff --git a/setup.py b/setup.py index b44a366..831617d 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name='django-nested-admin', - version="3.1.3", + version="3.2.0", install_requires=[ 'python-monkey-business>=1.0.0', 'six', @@ -33,7 +33,14 @@ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Framework :: Django', + 'Framework :: Django :: 1.8', + 'Framework :: Django :: 1.11', + 'Framework :: Django :: 2.0', + 'Framework :: Django :: 2.1', + 'Framework :: Django :: 2.2', ], include_package_data=True, zip_safe=False,