Skip to content

Commit f9245c5

Browse files
Release with standard version tag
1 parent c234b3e commit f9245c5

3 files changed

Lines changed: 11 additions & 7 deletions

File tree

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ Release date: TBA
1515

1616
* scm_setuptools has been added to the packaging.
1717

18+
* Pylint's tags are now the standard form ``vX.Y.Z`` and not ``pylint-X.Y.Z`` anymore.
19+
1820

1921
What's New in Pylint 2.8.1?
2022
===========================

doc/release.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ git --aliases=.copyrite_aliases . --jobs=8
2323
6. 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
4949
main branch by doing a history only merge. It's done in order to signal that this is an
5050
official release tag, and for `pre-commit autoupdate` to works.
5151

5252
```bash
5353
git checkout master
54-
git merge --no-edit --strategy=ours pylint-X.Y.Z
54+
git merge --no-edit --strategy=ours vX.Y.Z
5555
git push
5656
```
5757

doc/whatsnew/2.9.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@ New checkers
1414

1515
Other Changes
1616
=============
17+
18+
* Pylint's tags are now the standard form ``vX.Y.Z`` and not ``pylint-X.Y.Z`` anymore.

0 commit comments

Comments
 (0)