Skip to content

Commit 1a3cbf7

Browse files
committed
build: release v2.0.4
1 parent 5330a94 commit 1a3cbf7

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,16 @@ clean: ## Remove non-source files.
2424
sterile: clean ## Remove all non-controlled content, even if expensive.
2525
-rm -rf .tox*
2626

27-
2827
kit: ## Make the source distribution.
2928
python -m build
3029
python -m twine check dist/*
3130

3231
kit_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

README.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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+
140145
v2.0.3 — 2022-05-04
141146
-------------------
142147

143-
Add support for Django 4.0
148+
Add support for Django 4.0.
144149

145150

146151
v2.0.2 — 2021-11-11

howto.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def read(*names, **kwargs):
5454

5555
setup(
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(

0 commit comments

Comments
 (0)