Skip to content

Commit d3d6866

Browse files
committed
v1.2.2
1 parent 30cfe8c commit d3d6866

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

README.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ A `coverage.py`_ plugin to measure the coverage of Django templates.
1111
| |kit| |downloads|
1212
1313
Supported Python versions are 2.7, 3.4, and 3.5. Supported Django versions are
14-
1.4 through 1.8.
14+
1.4 through 1.9.
1515

1616
The plugin is pip installable::
1717

@@ -54,6 +54,12 @@ Changes
5454
~~~~~~~
5555

5656

57+
v1.2.2 --- 2016-02-01
58+
---------------------
59+
60+
No change in code, but Django 1.9.2 is now supported.
61+
62+
5763
v1.2.1 --- 2016-01-28
5864
---------------------
5965

@@ -119,7 +125,7 @@ To run the tests::
119125
.. |versions| image:: https://img.shields.io/pypi/pyversions/django_coverage_plugin.svg
120126
:target: https://pypi.python.org/pypi/django_coverage_plugin
121127
:alt: Python versions supported
122-
.. |djversions| image:: https://img.shields.io/badge/Django-1.4,1.5,1.6,1.7,1.8-44b78b.svg
128+
.. |djversions| image:: https://img.shields.io/badge/Django-1.4,1.5,1.6,1.7,1.8,1.9-44b78b.svg
123129
:target: https://pypi.python.org/pypi/django_coverage_plugin
124130
:alt: Django versions supported
125131
.. |status| image:: https://img.shields.io/pypi/status/django_coverage_plugin.svg

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
setup(
2323
name='django_coverage_plugin',
24-
version='1.2.1',
24+
version='1.2.2',
2525
description='Django template coverage.py plugin',
2626
author='Ned Batchelder',
2727
author_email='[email protected]',

tox.ini

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

1515
[tox]
1616
envlist =
17-
py27-django{14,15,16,17,18,19,19tip,tip,local},
18-
py34-django{15,16,17,18,19,19tip,tip,local},
19-
py35-django{18,19,19tip,tip,local},
17+
py27-django{14,15,16,17,18,19,19tip,tip},
18+
py34-django{15,16,17,18,19,19tip,tip},
19+
py35-django{18,19,19tip,tip},
2020
check,doc
2121

2222
[testenv]
@@ -29,7 +29,6 @@ deps =
2929
django19: Django >=1.9, <1.10
3030
django19tip: https://github.com/django/django/archive/stable/1.9.x.tar.gz
3131
djangotip: https://github.com/django/django/archive/master.tar.gz
32-
djangolocal: /src/django/trunk
3332

3433
commands =
3534
python -c "import tests.banner"

0 commit comments

Comments
 (0)