diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-06-12 08:22:53 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-06-12 08:22:53 -0400 |
commit | a9c3aeb3f614b184dabfaf638914a847176f637e (patch) | |
tree | e34851e4c13ab7ccd96d7b69f90307c917e6dace /howto.txt | |
parent | 4401a6c182a15c11042ba67153516e067063d406 (diff) | |
download | python-coveragepy-git-a9c3aeb3f614b184dabfaf638914a847176f637e.tar.gz |
build: use annotated tags
Diffstat (limited to 'howto.txt')
-rw-r--r-- | howto.txt | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -55,8 +55,8 @@ - upload kits: $ make kit_upload - Tag the tree - $ git tag 3.0.1 - $ git push --tags + $ git tag -a 3.0.1 + $ git push --all --follow-tags - Bump version: - coverage/version.py - increment version number @@ -75,7 +75,7 @@ - IF NOT PRE-RELEASE: - update git "stable" branch to point to latest release $ git branch -f stable <latest-tag> - $ git push --all + $ git push --all --follow-tags - @ https://readthedocs.org/projects/coverage/builds/ - wait for the new tag build to finish successfully. - @ https://readthedocs.org/dashboard/coverage/advanced/ |