summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-03-27 14:42:22 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2022-03-27 14:44:20 +0200
commit2066cab9bbe43341b84014ac9610e275db586431 (patch)
tree4dcbbae65a9fe3ccf98e90899dc2fc59ca38c05c
parent6a25d7048edadc18a05e999021049ade86ef2bd9 (diff)
downloadpylint-git-2.13.2.tar.gz
Bump pylint to 2.13.2, update changelogv2.13.2
-rw-r--r--ChangeLog12
-rw-r--r--doc/release.md1
-rw-r--r--pylint/__pkginfo__.py2
-rw-r--r--tbump.toml2
4 files changed, 14 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 1df22b6b5..d3a6411bd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -16,10 +16,16 @@ Release date: TBA
(Ie. not necessarily at the end)
-What's New in Pylint 2.13.2?
+What's New in Pylint 2.13.3?
============================
Release date: TBA
+
+
+What's New in Pylint 2.13.2?
+============================
+Release date: 2022-03-27
+
* Fix crash when subclassing a ``namedtuple``.
Closes #5982
@@ -34,6 +40,10 @@ Release date: TBA
Fixes #5989
+* Better error messages in case of crash if pylint can't write the issue template.
+
+ Refer to #5987
+
What's New in Pylint 2.13.1?
============================
diff --git a/doc/release.md b/doc/release.md
index c68ef00bf..556de5c0a 100644
--- a/doc/release.md
+++ b/doc/release.md
@@ -57,6 +57,7 @@ maintenance branch we cherry-pick the commit from `main`.
version `X.Y-1.Z'`. (For example: `v2.3.5`)
- After the PR is merged on `main` cherry-pick the commits on the `maintenance/X.Y.x`
branch (For example: from `maintenance/2.4.x` cherry-pick a commit from `main`)
+- Remove the "need backport" label from cherry-picked issues
- Release a patch version
## Releasing a patch version
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 588fb54a0..7d04c14d3 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -4,7 +4,7 @@
from typing import Tuple
-__version__ = "2.13.1"
+__version__ = "2.13.2"
def get_numversion_from_version(v: str) -> Tuple:
diff --git a/tbump.toml b/tbump.toml
index fa371dd6e..67c389d7a 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"
[version]
-current = "2.13.1"
+current = "2.13.2"
regex = '''
^(?P<major>0|[1-9]\d*)
\.