Skip to content

Commit 0e1ca11

Browse files
Bump pylint to 2.13.1, update changelog
1 parent 4a05794 commit 0e1ca11

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

CONTRIBUTORS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ contributors:
121121
- David Gilman <[email protected]>
122122
- Andrew Haigh <[email protected]> (nelfin)
123123
- へーさん <[email protected]>
124+
- orSolocate <[email protected]>
124125
- Thomas Hisch <[email protected]>
125126
- Marianna Polatoglou <[email protected]>: minor contribution for wildcard import check
126127
- Manuel Vázquez Acosta <[email protected]>
@@ -138,7 +139,6 @@ contributors:
138139
* Added new extension which detects comparing integers to zero,
139140
* Added new useless-return checker,
140141
* Added new try-except-raise checker
141-
- orSolocate <[email protected]>
142142
- Téo Bouvard <[email protected]>
143143
- Tushar Sadhwani <[email protected]> (tusharsadhwani)
144144
- Mihai Balint <[email protected]>

ChangeLog

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,22 @@ Release date: TBA
1010
Put new features here and also in 'doc/whatsnew/2.14.rst'
1111

1212

13+
1314
..
1415
Insert your changelog randomly, it will reduce merge conflicts
1516
(Ie. not necessarily at the end)
1617

1718

18-
What's New in Pylint 2.13.1?
19+
What's New in Pylint 2.13.2?
1920
============================
2021
Release date: TBA
2122

23+
24+
25+
What's New in Pylint 2.13.1?
26+
============================
27+
Release date: 2022-03-26
28+
2229
* Fix a regression in 2.13.0 where ``used-before-assignment`` was emitted for
2330
the usage of a nonlocal in a try block.
2431

doc/release.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ branch
4545
appropriate changelog in the description. This triggers the PyPI release.
4646
- Delete the `maintenance/X.Y-1.x` branch. (For example: `maintenance/2.3.x`)
4747
- Create a `maintenance/X.Y.x` (For example: `maintenance/2.4.x` from the `v2.4.0` tag.)
48+
- Close the current milestone and create the new ones (For example: close `2.4.0`,
49+
create `2.4.1` and `2.6.0`)
4850

4951
## Backporting a fix from `main` to the maintenance branch
5052

@@ -67,8 +69,7 @@ cherry-picked on the maintenance branch.
6769
- Install the release dependencies: `pip3 install -r requirements_test.txt`
6870
- Bump the version and release by using `tbump X.Y-1.Z --no-push`. (For example:
6971
`tbump 2.3.5 --no-push`)
70-
- Check the result visually and then by triggering the "release tests" workflow in
71-
GitHub Actions first.
72+
- Check the result visually with `git show`.
7273
- Push the tag.
7374
- Release the version on GitHub with the same name as the tag and copy and paste the
7475
appropriate changelog in the description. This triggers the PyPI release.
@@ -77,6 +78,8 @@ cherry-picked on the maintenance branch.
7778
`pre-commit autoupdate` works for pylint.
7879
- Fix version conflicts properly, or bump the version to `X.Y.0-devZ` (For example:
7980
`2.4.0-dev6`) before pushing on the main branch
81+
- Close the current milestone and create the new one (For example: close `2.3.5`, create
82+
`2.3.6`)
8083

8184
## Milestone handling
8285

pylint/__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from typing import Tuple
66

7-
__version__ = "2.13.0"
7+
__version__ = "2.13.1"
88

99

1010
def get_numversion_from_version(v: str) -> Tuple:

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github_url = "https://github.com/PyCQA/pylint"
22

33
[version]
4-
current = "2.13.0"
4+
current = "2.13.1"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

0 commit comments

Comments
 (0)