Skip to content

Commit

Permalink
build: some Makefile targets only make sense from the release steps
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Feb 20, 2024
1 parent d365814 commit a7d1022
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -179,19 +179,19 @@ sample_html_beta: _sample_cog_html ## Generate sample HTML report for a beta rel

REPO_OWNER = nedbat/coveragepy

edit_for_release: ## Edit sources to insert release facts.
edit_for_release: #: Edit sources to insert release facts (see howto.txt).
python igor.py edit_for_release

cheats: ## Create some useful snippets for releasing.
python igor.py cheats | tee cheats.txt

relbranch: ## Create the branch for releasing.
relbranch: #: Create the branch for releasing (see howto.txt).
git switch -c nedbat/release-$$(date +%Y%m%d)

relcommit1: ## Commit the first release changes.
relcommit1: #: Commit the first release changes (see howto.txt).
git commit -am "docs: prep for $$(python setup.py --version)"

relcommit2: ## Commit the latest sample HTML report.
relcommit2: #: Commit the latest sample HTML report (see howto.txt).
git commit -am "docs: sample HTML for $$(python setup.py --version)"

kit: ## Make the source distribution.
Expand Down

0 comments on commit a7d1022

Please sign in to comment.