Skip to content

Commit

Permalink
build: release v2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Oct 31, 2022
1 parent 5330a94 commit 1a3cbf7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,16 @@ clean: ## Remove non-source files.
sterile: clean ## Remove all non-controlled content, even if expensive.
-rm -rf .tox*


kit: ## Make the source distribution.
python -m build
python -m twine check dist/*

kit_upload: ## Upload the built distributions to PyPI.
python -m twine upload --verbose dist/*

tag: ## Make a git tag with the version number
tag: ## Make a git tag with the version number.
git tag -a -m "Version v$$(python setup.py --version)" v$$(python setup.py --version)
git push --all

ghrelease: ## Make a GitHub release for the latest version.
python -m scriv github-release
7 changes: 6 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,15 @@ History

.. scriv-insert-here
v2.0.4 — 2022-10-31
-------------------

Declare our support for Python 3.11 and Django 4.1.

v2.0.3 — 2022-05-04
-------------------

Add support for Django 4.0
Add support for Django 4.0.


v2.0.2 — 2021-11-11
Expand Down
2 changes: 1 addition & 1 deletion howto.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
$ make clean kit
$ make kit_upload
$ make tag
- make a new gh release: https://github.com/nedbat/django_coverage_plugin/releases/new
$ make ghrelease
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def read(*names, **kwargs):

setup(
name='django_coverage_plugin',
version='2.0.3',
version='2.0.4',
description='Django template coverage.py plugin',
long_description=(
re.sub(
Expand Down

0 comments on commit 1a3cbf7

Please sign in to comment.