@@ -117,5 +117,163 @@ To run the tests::
117
117
$ pip install -r requirements.txt
118
118
$ tox
119
119
120
+
121
+ History
122
+ ~~~~~~~
123
+
124
+ Unreleased
125
+ ----------
126
+
127
+ Drop support for Python 3.4 and 3.5.
128
+
129
+ A setting is available: ``template_extensions `` lets you set the file
130
+ extensions that will be considered when looking for unused templates
131
+ (requested in `issue 60 `_).
132
+
133
+ Fix an issue on Windows where file names were being compared
134
+ case-sensitively, causing templates to be missed (`issue 46 `_).
135
+
136
+ Fix an issue (`issue 63 `_) where tag libraries can't be found if imported
137
+ during test collection. Thanks to Daniel Izquierdo for the fix.
138
+
139
+ .. _issue 46 : https://github.com/nedbat/django_coverage_plugin/issues/46
140
+ .. _issue 60 : https://github.com/nedbat/django_coverage_plugin/issues/60
141
+ .. _issue 63 : https://github.com/nedbat/django_coverage_plugin/issues/63
142
+
143
+ v1.8.0 --- 2020-01-23
144
+ ---------------------
145
+
146
+ Add support for:
147
+
148
+ - Coverage 5
149
+
150
+ v1.7.0 --- 2020-01-16
151
+ ---------------------
152
+
153
+ Add support for:
154
+
155
+ - Python 3.7 & 3.8
156
+ - Django 2.2 & 3.0
157
+
158
+ v1.6.0 --- 2018-09-04
159
+ ---------------------
160
+
161
+ Add support for Django 2.1.
162
+
163
+
164
+ v1.5.2 --- 2017-10-18
165
+ ---------------------
166
+
167
+ Validates support for Django version 2.0b1. Improves discovery of
168
+ template files.
169
+
170
+
171
+ v1.5.1a --- 2017-04-05
172
+ ----------------------
173
+
174
+ Validates support for Django version 1.11. Testing for new package
175
+ maintainer Pamela McA'Nulty
176
+
177
+
178
+ v1.5.0 --- 2017-02-23
179
+ ---------------------
180
+
181
+ Removes support for Django versions below 1.8. Validates support for
182
+ Django version 1.11b1
183
+
184
+
185
+ v1.4.2 --- 2017-02-06
186
+ ---------------------
187
+
188
+ Fixes another instance of `issue 32 `_, which was the result of an
189
+ initialization order problem.
190
+
191
+
192
+
193
+ v1.4.1 --- 2017-01-25
194
+ ---------------------
195
+
196
+ Fixes `issue 32 `_, which was the result of an initialization order
197
+ problem.
198
+
199
+ .. _issue 32 : https://github.com/nedbat/django_coverage_plugin/issues/32
200
+
201
+
202
+
203
+ v1.4 --- 2017-01-16
204
+ -------------------
205
+
206
+ Django 1.10.5 is now supported.
207
+
208
+ Checking settings configuration is deferred so that settings.py is
209
+ included in coverage reporting. Fixes `issue 28 `_.
210
+
211
+ Only the ``django.template.backends.django.DjangoTemplates `` template
212
+ engine is supported, and it must be configured with
213
+ ``['OPTIONS']['debug'] = True ``. Fixes `issue 27 `_.
214
+
215
+ .. _issue 28 : https://github.com/nedbat/django_coverage_plugin/issues/28
216
+ .. _issue 27 : https://github.com/nedbat/django_coverage_plugin/issues/27
217
+
218
+
219
+
220
+ v1.3.1 --- 2016-06-02
221
+ ---------------------
222
+
223
+ Settings are read slightly differently, so as to not interfere with
224
+ programs that don't need settings. Fixes `issue 18 `_.
225
+
226
+ .. _issue 18 : https://github.com/nedbat/django_coverage_plugin/issues/18
227
+
228
+
229
+
230
+ v1.3 --- 2016-04-03
231
+ -------------------
232
+
233
+ Multiple template engines are allowed. Thanks, Simon Charette.
234
+
235
+
236
+
237
+ v1.2.2 --- 2016-02-01
238
+ ---------------------
239
+
240
+ No change in code, but Django 1.9.2 is now supported.
241
+
242
+
243
+
244
+ v1.2.1 --- 2016-01-28
245
+ ---------------------
246
+
247
+ The template debug settings are checked properly for people still using
248
+ ``TEMPLATE_DEBUG `` in newer versions of Django.
249
+
250
+
251
+
252
+ v1.2 --- 2016-01-16
253
+ -------------------
254
+
255
+ Check if template debugging is enabled in the settings, and raise a
256
+ visible warning if not. This prevents mysterious failures of the
257
+ plugin, and fixes `issue 17 `_.
258
+
259
+ Potential Django 1.9 support is included, but the patch to Django hasn't
260
+ been applied yet.
261
+
262
+ .. _issue 17 : https://github.com/nedbat/django_coverage_plugin/issues/17
263
+
264
+
265
+
266
+ v1.1 --- 2015-11-12
267
+ -------------------
268
+
269
+ Explicitly configure settings if need be to get things to work.
270
+
271
+
272
+
273
+ v1.0 --- 2015-09-20
274
+ -------------------
275
+
276
+ First version :)
277
+
120
278
.. _coverage.py : http://nedbatchelder.com/code/coverage
121
279
.. _dtcov : https://github.com/traff/dtcov
0 commit comments