diff --git a/AUTHORS.txt b/AUTHORS.txt index d6d8b5c..641ea11 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -3,6 +3,7 @@ contributions by: Andrew Pinkham Aron Griffis +Bruno Alla Emil Madsen Federico Bond Jessamyn Smith diff --git a/HISTORY.rst b/HISTORY.rst index 028b9d0..335bcff 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,13 @@ History ======= +v1.7.0 --- 2020-01-16 +--------------------- + +Add support for: + +- Python 3.7 & 3.8 +- Django 2.2 & 3.0 v1.6.0 --- 2018-09-04 --------------------- diff --git a/NOTICE.txt b/NOTICE.txt index 622ecc2..03e0879 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -1,4 +1,4 @@ -Copyright 2015-2018 Ned Batchelder. All rights reserved. +Copyright 2015-2020 Ned Batchelder. All rights reserved. Except where noted otherwise, this software is licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in diff --git a/README.rst b/README.rst index 8409149..ba433de 100644 --- a/README.rst +++ b/README.rst @@ -30,7 +30,7 @@ Supported Python versions: 2.7, 3.4, 3.5, 3.6, 3.7 and 3.8. Supported Django versions: 1.8, 1.11, 2.0, 2.1, 2.2 and 3.0. -Supported coverage.py versions are 4.0 and higher. +Supported coverage.py version 4.x . Support for version 5 is on the way! The plugin is pip installable:: diff --git a/howto.txt b/howto.txt index 7d8ece8..d29a877 100644 --- a/howto.txt +++ b/howto.txt @@ -8,7 +8,7 @@ Development Status :: 5 - Production/Stable - Copyright date in NOTICE.txt - Update README.rst with latest changes -- Update README.rst with latest changes +- Update HISTORY.rst with latest changes - Kits: $ make kit $ make kit_upload diff --git a/setup.py b/setup.py index 174fdac..95751d5 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ def read(*names, **kwargs): setup( name='django_coverage_plugin', - version='1.6.0', + version='1.7.0', description='Django template coverage.py plugin', long_description=( re.compile( diff --git a/tox.ini b/tox.ini index 31061a9..7af5133 100644 --- a/tox.ini +++ b/tox.ini @@ -14,10 +14,10 @@ [tox] envlist = - py27-django{18,19,110,111,111tip}, - py34-django{18,19,110,111,111tip,20}, - py35-django{18,19,110,111,111tip,20,21,22}, - py36-django{18,19,110,111,111tip,20,21,22,30,tip}, + py27-django{18,19,110,111}, + py34-django{18,19,110,111,20}, + py35-django{18,19,110,111,20,21,22}, + py36-django{18,19,110,111,20,21,22,30,tip}, py37-django{20,21,22,30,tip}, py38-django{22,30,tip}, check,pkgcheck,doc @@ -29,7 +29,6 @@ deps = django19: Django>=1.9,<1.10 django110: Django>=1.10,<1.11 django111: Django>=1.11,<2.0 - django111tip: https://github.com/django/django/archive/stable/1.11.x.tar.gz django20: Django>=2.0,<2.1 django21: Django>=2.1,<2.2 django22: Django>=2.2,<3.0