Skip to content

Commit e18f496

Browse files
authored
Release v1.6rc1 (#59)
* Remove conditional import for Django 1.4 Django 1.8+ is supported for this project, so the condition is unnecessary. * Configure iSort for project * Sort plugin imports with iSort * Update and alphabetize Authors * Update Read Me for Django 2.1; general clean-up * Update metadata in setup.py * Move change-log from ReadMe to History * Add long description to setup.py * Test package and imports in Tox * Update package manifest with metadata
1 parent ea123f6 commit e18f496

File tree

14 files changed

+265
-191
lines changed

14 files changed

+265
-191
lines changed

.isort.cfg

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[settings]
2+
combine_as_imports=True
3+
force_grid_wrap=0
4+
include_trailing_comma=True
5+
line_length=79
6+
multi_line_output=3
7+
known_third_party = coverage,django,setuptools,six,unittest_mixins

AUTHORS.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
The Django coverage plugin was written by Ned Batchelder, with other
22
contributions by:
33

4+
Andrew Pinkham
5+
Aron Griffis
6+
Emil Madsen
7+
Federico Bond
48
Jessamyn Smith
5-
Simon Charette
69
Pamela McA'Nulty
7-
Emil Madsen
10+
Simon Charette

HISTORY.rst

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
=======
2+
History
3+
=======
4+
5+
6+
v1.6.0 --- 2018-09-04
7+
---------------------
8+
9+
Add support for Django 2.1.
10+
11+
12+
v1.5.2 --- 2017-10-18
13+
---------------------
14+
15+
Validates support for Django version 2.0b1. Improves discovery of
16+
template files.
17+
18+
19+
v1.5.1a --- 2017-04-05
20+
----------------------
21+
22+
Validates support for Django version 1.11. Testing for new package
23+
maintainer Pamela McA'Nulty
24+
25+
26+
v1.5.0 --- 2017-02-23
27+
---------------------
28+
29+
Removes support for Django versions below 1.8. Validates support for
30+
Django version 1.11b1
31+
32+
33+
v1.4.2 --- 2017-02-06
34+
---------------------
35+
36+
Fixes another instance of `issue 32`_, which was the result of an
37+
initialization order problem.
38+
39+
40+
41+
v1.4.1 --- 2017-01-25
42+
---------------------
43+
44+
Fixes `issue 32`_, which was the result of an initialization order
45+
problem.
46+
47+
.. _issue 32: https://github.com/nedbat/django_coverage_plugin/issues/32
48+
49+
50+
51+
v1.4 --- 2017-01-16
52+
-------------------
53+
54+
Django 1.10.5 is now supported.
55+
56+
Checking settings configuration is deferred so that settings.py is
57+
included in coverage reporting. Fixes `issue 28`_.
58+
59+
Only the ``django.template.backends.django.DjangoTemplates`` template
60+
engine is supported, and it must be configured with
61+
``['OPTIONS']['debug'] = True``. Fixes `issue 27`_.
62+
63+
.. _issue 28: https://github.com/nedbat/django_coverage_plugin/issues/28
64+
.. _issue 27: https://github.com/nedbat/django_coverage_plugin/issues/27
65+
66+
67+
68+
v1.3.1 --- 2016-06-02
69+
---------------------
70+
71+
Settings are read slightly differently, so as to not interfere with
72+
programs that don't need settings. Fixes `issue 18`_.
73+
74+
.. _issue 18: https://github.com/nedbat/django_coverage_plugin/issues/18
75+
76+
77+
78+
v1.3 --- 2016-04-03
79+
-------------------
80+
81+
Multiple template engines are allowed. Thanks, Simon Charette.
82+
83+
84+
85+
v1.2.2 --- 2016-02-01
86+
---------------------
87+
88+
No change in code, but Django 1.9.2 is now supported.
89+
90+
91+
92+
v1.2.1 --- 2016-01-28
93+
---------------------
94+
95+
The template debug settings are checked properly for people still using
96+
``TEMPLATE_DEBUG`` in newer versions of Django.
97+
98+
99+
100+
v1.2 --- 2016-01-16
101+
-------------------
102+
103+
Check if template debugging is enabled in the settings, and raise a
104+
visible warning if not. This prevents mysterious failures of the
105+
plugin, and fixes `issue 17`_.
106+
107+
Potential Django 1.9 support is included, but the patch to Django hasn't
108+
been applied yet.
109+
110+
.. _issue 17: https://github.com/nedbat/django_coverage_plugin/issues/17
111+
112+
113+
114+
v1.1 --- 2015-11-12
115+
-------------------
116+
117+
Explicitly configure settings if need be to get things to work.
118+
119+
120+
121+
v1.0 --- 2015-09-20
122+
-------------------
123+
124+
First version :)

MANIFEST.in

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
1-
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
2-
# For details: https://github.com/nedbat/django_coverage_plugin/blob/master/NOTICE.txt
1+
# Licensed under the Apache 2.0 License
2+
# - http://www.apache.org/licenses/LICENSE-2.0
3+
# - https://github.com/nedbat/django_coverage_plugin/blob/master/NOTICE.txt
34

4-
include requirements.txt
5+
exclude .isort.cfg
6+
exclude howto.txt
7+
exclude Makefile
8+
exclude requirements.txt
9+
exclude tox.ini
10+
include AUTHORS.txt
11+
include HISTORY.rst
12+
include LICENSE.txt
13+
include NOTICE.txt
14+
include README.rst
15+
prune tests

0 commit comments

Comments
 (0)