From 279df4afb55a3c462ccdbcf60d3916caf1b3c055 Mon Sep 17 00:00:00 2001 From: Frankie Dintino Date: Mon, 13 Aug 2018 08:12:08 -0400 Subject: [PATCH] v3.1.0 [ci skip] --- CHANGELOG.rst | 6 +++++- MANIFEST.in | 1 - setup.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 721b9be..72976dd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,10 +1,14 @@ Changelog ========= -**3.0.22b1 (unreleased)** +**3.1.0 (Aug 13, 2018)** * Fixed: NestedTabularInline support in Django 2.0 (`#97`_) +* Fixed: Ensure correct relative order of js media. (`#71`_) +* Switch js build process to use webpack, without gulp +* Add test coverage reporting for both python and js code +.. _#71: https://github.com/theatlantic/django-nested-admin/issues/71 .. _#97: https://github.com/theatlantic/django-nested-admin/issues/97 **3.0.21 (Nov 1, 2017)** diff --git a/MANIFEST.in b/MANIFEST.in index 6917119..7ed8fc7 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,4 @@ include LICENSE -include README.md include README.rst recursive-include nested_admin/static * recursive-include nested_admin/templates * diff --git a/setup.py b/setup.py index 56d08bb..0b1d447 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name='django-nested-admin', - version="3.0.22b1", + version="3.1.0", install_requires=[ 'python-monkey-business>=1.0.0', ],