Skip to content

Commit

Permalink
Change version for 2.7.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Feb 28, 2021
1 parent 391c8aa commit 3dfecb0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 3dfecb0

Please sign in to comment.