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.
2424sterile : clean # # Remove all non-controlled content, even if expensive.
2525 -rm -rf .tox*
2626
27-
2827kit : # # Make the source distribution.
2928 python -m build
3029 python -m twine check dist/*
3130
3231kit_upload : # # Upload the built distributions to PyPI.
3332 python -m twine upload --verbose dist/*
3433
35- tag : # # Make a git tag with the version number
34+ tag : # # Make a git tag with the version number.
3635 git tag -a -m " Version v$$ (python setup.py --version)" v$$(python setup.py --version )
3736 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
137137
138138.. scriv-insert-here
139139
140+ v2.0.4 — 2022-10-31
141+ -------------------
142+
143+ Declare our support for Python 3.11 and Django 4.1.
144+
140145v2.0.3 — 2022-05-04
141146-------------------
142147
143- Add support for Django 4.0
148+ Add support for Django 4.0.
144149
145150
146151v2.0.2 — 2021-11-11
Original file line number Diff line number Diff line change 1212 $ make clean kit
1313 $ make kit_upload
1414 $ 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):
5454
5555setup (
5656 name = 'django_coverage_plugin' ,
57- version = '2.0.3 ' ,
57+ version = '2.0.4 ' ,
5858 description = 'Django template coverage.py plugin' ,
5959 long_description = (
6060 re .sub (
You can’t perform that action at this time.
0 commit comments