From 15396a14bc8f977a00b5288356e79467653a2c3c Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Sun, 28 Feb 2021 22:37:56 +0100 Subject: [PATCH] Upgrade the changelog following release of 2.7.2 --- ChangeLog | 14 +++++++++++--- pylint/__pkginfo__.py | 2 +- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 89f45726b3..3fe0f3cf64 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 2c8538b96d..3fe88bd813 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -39,7 +39,7 @@ 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",