summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-28 22:37:56 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-28 22:53:30 +0100
commit15396a14bc8f977a00b5288356e79467653a2c3c (patch)
treec59a0e9fdfff097da41938f69cd79e9b003dbbb1
parent391c8aa96c81849079ca9f6e38f8d92ec52ee01e (diff)
downloadpylint-git-15396a14bc8f977a00b5288356e79467653a2c3c.tar.gz
Upgrade the changelog following release of 2.7.2
-rw-r--r--ChangeLog14
-rw-r--r--pylint/__pkginfo__.py2
2 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 89f45726b..3fe0f3cf6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,17 +4,25 @@ Pylint's ChangeLog
What's New in Pylint 2.8.0?
===========================
+Release date: TBA
+
..
Put new features here
* Workflow and packaging improvements
-
-What's New in Pylint 2.7.2?
+What's New in Pylint 2.7.3?
===========================
+Release date: TBA
+
..
Put bug fixes that will be cherry-picked to latest major version here
+
+What's New in Pylint 2.7.2?
+===========================
+Release date: 2021-02-28
+
* Fix False Positive on `Enum.__members__.items()`, `Enum.__members__.values`, and `Enum.__members__.keys`
Closes #4123
@@ -24,6 +32,7 @@ What's New in Pylint 2.7.2?
What's New in Pylint 2.7.1?
===========================
+Release date: 2021-02-23
* Expose `UnittestLinter` in pylint.testutils
@@ -34,7 +43,6 @@ What's New in Pylint 2.7.1?
What's New in Pylint 2.7.0?
===========================
-
Release date: 2021-02-21
* Introduce DeprecationMixin for reusable deprecation checks.
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 2c8538b96..3fe88bd81 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -39,7 +39,7 @@ if dev_version is not None:
version += "-dev" + str(dev_version)
install_requires = [
- "astroid>=2.5.1,<2.6",
+ "astroid>=2.5.1,<2.7",
"isort>=4.2.5,<6",
"mccabe>=0.6,<0.7",
"toml>=0.7.1",