From a7d10222110c37ecd4f10f4f752ddc62024630a7 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 20 Feb 2024 12:41:34 -0500 Subject: [PATCH] build: some Makefile targets only make sense from the release steps --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 09f81672e..cf81a8a38 100644 --- a/Makefile +++ b/Makefile @@ -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.