@@ -23,12 +23,12 @@ git --aliases=.copyrite_aliases . --jobs=8
23236 . Make sure the tests are passing on Travis/GithubActions:
2424 https://travis-ci.org/PyCQA/pylint/
2525
26- 7 . Do the actual release by tagging the master with ` pylint-X .Y.Z` (ie ` pylint-1 .6.12`
27- or ` pylint-4.0.0a1 ` for example). Travis should deal with the release process once
28- the tag is pushed with ` git push origin --tags `
26+ 7 . Do the actual release by tagging the master with ` vX .Y.Z` (ie ` v1 .6.12` or ` v2.5.3a1 `
27+ for example). Travis should deal with the release process once the tag is pushed with
28+ ` git push origin --tags `
2929
30- 8 . Go to github, click on "Releases" then on the ` pylint-X .Y.Z` tag, choose edit tag,
31- and copy past the changelog in the description.
30+ 8 . Go to github, click on "Releases" then on the ` vX .Y.Z` tag, choose edit tag, and copy
31+ past the changelog in the description.
3232
3333## Manual Release
3434
@@ -45,13 +45,13 @@ twine upload dist/*
4545
4646### Merge tags in master for pre-commit
4747
48- If the tag you just made is not part of the main branch, merge the tag ` X .Y.Z` in the
48+ If the tag you just made is not part of the main branch, merge the tag ` vX .Y.Z` in the
4949main branch by doing a history only merge. It's done in order to signal that this is an
5050official release tag, and for ` pre-commit autoupdate ` to works.
5151
5252``` bash
5353git checkout master
54- git merge --no-edit --strategy=ours pylint-X .Y.Z
54+ git merge --no-edit --strategy=ours vX .Y.Z
5555git push
5656```
5757
0 commit comments