summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2021-04-01 13:08:34 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-01 14:02:36 +0200
commit44a3aa25fd9b5b3469b3e24179798d67ef604eeb (patch)
tree10053b755900636913bee5f096781f2684b5680c /ChangeLog
parent8cab76fc6ad64e6f4efddf9d8cab95973bfb4609 (diff)
downloadpylint-git-44a3aa25fd9b5b3469b3e24179798d67ef604eeb.tar.gz
Fix class constant naming
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1e3a90f2f..c62b43359 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -19,6 +19,12 @@ Release date: Undefined
* Fix issue with PEP 585 syntax and the use of ``collections.abc.Set``
+* Fix issue that caused class variables annotated with ``typing.ClassVar`` to be
+ identified as class constants. Now, class variables annotated with
+ ``typing.Final`` are identified as such.
+
+ Closes #4277
+
What's New in Pylint 2.7.4?
===========================
@@ -31,7 +37,7 @@ Release date: 2021-03-30
* Fix issue with annotated class constants
- * Closes #4264
+ Closes #4264
What's New in Pylint 2.7.3?