summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-28 22:34:02 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-28 22:34:51 +0100
commit3dfecb0b269f3594b2e211032fbfa54ee80f6aaa (patch)
tree6b1d6b22fde6cea8c4a82a9621abf73f1fc73589
parent391c8aa96c81849079ca9f6e38f8d92ec52ee01e (diff)
downloadpylint-git-pylint-2.7.2.tar.gz
Change version for 2.7.2 releasepylint-2.7.2
-rw-r--r--ChangeLog13
-rw-r--r--pylint/__pkginfo__.py4
2 files changed, 9 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 89f45726b..d0b78adfa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,18 +2,16 @@
Pylint's ChangeLog
------------------
-What's New in Pylint 2.8.0?
+What's New in Pylint 2.7.3?
===========================
+Release date: Undefined
..
- Put new features here
-
-* Workflow and packaging improvements
+ Put bug fixes that will be cherry-picked to latest major version here
What's New in Pylint 2.7.2?
===========================
-..
- Put bug fixes that will be cherry-picked to latest major version here
+Release date: 2021-02-28
* Fix False Positive on `Enum.__members__.items()`, `Enum.__members__.values`, and `Enum.__members__.keys`
Closes #4123
@@ -22,9 +20,12 @@ What's New in Pylint 2.7.2?
Closes #3636
+
What's New in Pylint 2.7.1?
===========================
+Release date: 2021-02-23
+
* Expose `UnittestLinter` in pylint.testutils
* Don't check directories starting with '.' when using register_plugins
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 2c8538b96..b43a75813 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -31,8 +31,8 @@
from os.path import join
# For an official release, use dev_version = None
-numversion = (2, 8, 0)
-dev_version = 1
+numversion = (2, 7, 2)
+dev_version = None
version = ".".join(str(num) for num in numversion)
if dev_version is not None: