summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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",