Skip to content

Commit 46084a2

Browse files
authored
πŸš€ Release v1.7.0
* πŸš€ Bump version 1.6.0 β†’ 1.7.0 * πŸ‘·β€β™€οΈ Remove Django 1.11 tip from Tox matrix * πŸ“š Update Copyright year * πŸ“š Update History * πŸ“š note Coverage 5.0 unsupported * πŸ“š Add Bruno Alla to author list for PR #65 PR #67
1 parent 717f879 commit 46084a2

File tree

7 files changed

+16
-9
lines changed

7 files changed

+16
-9
lines changed

β€ŽAUTHORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ contributions by:
33

44
Andrew Pinkham
55
Aron Griffis
6+
Bruno Alla
67
Emil Madsen
78
Federico Bond
89
Jessamyn Smith

β€ŽHISTORY.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
History
33
=======
44

5+
v1.7.0 --- 2020-01-16
6+
---------------------
7+
8+
Add support for:
9+
10+
- Python 3.7 & 3.8
11+
- Django 2.2 & 3.0
512

613
v1.6.0 --- 2018-09-04
714
---------------------

β€ŽNOTICE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2015-2018 Ned Batchelder. All rights reserved.
1+
Copyright 2015-2020 Ned Batchelder. All rights reserved.
22

33
Except where noted otherwise, this software is licensed under the Apache
44
License, Version 2.0 (the "License"); you may not use this work except in

β€ŽREADME.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Supported Python versions: 2.7, 3.4, 3.5, 3.6, 3.7 and 3.8.
3030

3131
Supported Django versions: 1.8, 1.11, 2.0, 2.1, 2.2 and 3.0.
3232

33-
Supported coverage.py versions are 4.0 and higher.
33+
Supported coverage.py version 4.x . Support for version 5 is on the way!
3434

3535
The plugin is pip installable::
3636

β€Žhowto.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Development Status :: 5 - Production/Stable
99
- Copyright date in NOTICE.txt
1010
- Update README.rst with latest changes
11-
- Update README.rst with latest changes
11+
- Update HISTORY.rst with latest changes
1212
- Kits:
1313
$ make kit
1414
$ make kit_upload

β€Žsetup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def read(*names, **kwargs):
5454

5555
setup(
5656
name='django_coverage_plugin',
57-
version='1.6.0',
57+
version='1.7.0',
5858
description='Django template coverage.py plugin',
5959
long_description=(
6060
re.compile(

β€Žtox.ini

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414

1515
[tox]
1616
envlist =
17-
py27-django{18,19,110,111,111tip},
18-
py34-django{18,19,110,111,111tip,20},
19-
py35-django{18,19,110,111,111tip,20,21,22},
20-
py36-django{18,19,110,111,111tip,20,21,22,30,tip},
17+
py27-django{18,19,110,111},
18+
py34-django{18,19,110,111,20},
19+
py35-django{18,19,110,111,20,21,22},
20+
py36-django{18,19,110,111,20,21,22,30,tip},
2121
py37-django{20,21,22,30,tip},
2222
py38-django{22,30,tip},
2323
check,pkgcheck,doc
@@ -29,7 +29,6 @@ deps =
2929
django19: Django>=1.9,<1.10
3030
django110: Django>=1.10,<1.11
3131
django111: Django>=1.11,<2.0
32-
django111tip: https://github.com/django/django/archive/stable/1.11.x.tar.gz
3332
django20: Django>=2.0,<2.1
3433
django21: Django>=2.1,<2.2
3534
django22: Django>=2.2,<3.0

0 commit comments

Comments
Β (0)