File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,16 @@ clean: ## Remove non-source files.
24
24
sterile : clean # # Remove all non-controlled content, even if expensive.
25
25
-rm -rf .tox*
26
26
27
-
28
27
kit : # # Make the source distribution.
29
28
python -m build
30
29
python -m twine check dist/*
31
30
32
31
kit_upload : # # Upload the built distributions to PyPI.
33
32
python -m twine upload --verbose dist/*
34
33
35
- tag : # # Make a git tag with the version number
34
+ tag : # # Make a git tag with the version number.
36
35
git tag -a -m " Version v$$ (python setup.py --version)" v$$(python setup.py --version )
37
36
git push --all
37
+
38
+ ghrelease : # # Make a GitHub release for the latest version.
39
+ python -m scriv github-release
Original file line number Diff line number Diff line change @@ -137,10 +137,15 @@ History
137
137
138
138
.. scriv-insert-here
139
139
140
+ v2.0.4 — 2022-10-31
141
+ -------------------
142
+
143
+ Declare our support for Python 3.11 and Django 4.1.
144
+
140
145
v2.0.3 — 2022-05-04
141
146
-------------------
142
147
143
- Add support for Django 4.0
148
+ Add support for Django 4.0.
144
149
145
150
146
151
v2.0.2 — 2021-11-11
Original file line number Diff line number Diff line change 12
12
$ make clean kit
13
13
$ make kit_upload
14
14
$ make tag
15
- - make a new gh release: https://github.com/nedbat/django_coverage_plugin/releases/new
15
+ $ make ghrelease
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ def read(*names, **kwargs):
54
54
55
55
setup (
56
56
name = 'django_coverage_plugin' ,
57
- version = '2.0.3 ' ,
57
+ version = '2.0.4 ' ,
58
58
description = 'Django template coverage.py plugin' ,
59
59
long_description = (
60
60
re .sub (
You can’t perform that action at this time.
0 commit comments