From c583d279cb10f88de26c9c8e12b9e0ff42fcee43 Mon Sep 17 00:00:00 2001 From: Andrew Pinkham Date: Thu, 16 Jan 2020 06:55:07 -0500 Subject: [PATCH 1/6] =?UTF-8?q?=F0=9F=9A=80=20Bump=20version=201.6.0=20?= =?UTF-8?q?=E2=86=92=201.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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( From 7901fee04bffb5b85df612f1959664b3658d8d7f Mon Sep 17 00:00:00 2001 From: Andrew Pinkham Date: Thu, 16 Jan 2020 07:09:27 -0500 Subject: [PATCH 2/6] =?UTF-8?q?=F0=9F=93=9A=20Update=20Copyright=20year;?= =?UTF-8?q?=20note=20Coverage=205.0=20status?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NOTICE.txt | 2 +- README.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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:: From a6a52c46d5abe8a4a23fc7c96104645fc14b1351 Mon Sep 17 00:00:00 2001 From: Andrew Pinkham Date: Thu, 16 Jan 2020 07:10:15 -0500 Subject: [PATCH 3/6] =?UTF-8?q?=F0=9F=91=B7=E2=80=8D=E2=99=80=EF=B8=8F=20R?= =?UTF-8?q?emove=20Django=201.11=20tip=20from=20Tox=20matrix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tox.ini | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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 From 99b5a2206f5a590be0fabb200428bad54ea9a3cc Mon Sep 17 00:00:00 2001 From: Andrew Pinkham Date: Thu, 16 Jan 2020 07:12:05 -0500 Subject: [PATCH 4/6] Add Bruno Alla to author list for PR #65 --- AUTHORS.txt | 1 + 1 file changed, 1 insertion(+) 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 From 0e70ef718a9093dfb56965d084c6bd6a15bb92e1 Mon Sep 17 00:00:00 2001 From: Andrew Pinkham Date: Thu, 16 Jan 2020 07:14:38 -0500 Subject: [PATCH 5/6] =?UTF-8?q?=F0=9F=93=9A=20Fix=20typo=20in=20howto?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- howto.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 532b813eaa89098b69538f1d9347555aabef3b67 Mon Sep 17 00:00:00 2001 From: Andrew Pinkham Date: Thu, 16 Jan 2020 07:16:57 -0500 Subject: [PATCH 6/6] =?UTF-8?q?=F0=9F=93=9A=20Update=20History?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HISTORY.rst | 7 +++++++ 1 file changed, 7 insertions(+) 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 ---------------------