summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 698fe434f..ed2e2398d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -168,8 +168,17 @@ What's New in Pylint 2.7.0?
Close #3555
+* New check: ``consider-using-generator``
+
+ This check warns when a comprehension is used inside an `any` or `all` function,
+ since it is unnecessary and should be replaced by a generator instead.
+ Using a generator would be less code and way faster.
+
+ Close #3165
+
* Add Github Actions to replace Travis and AppVeyor in the future
+
What's New in Pylint 2.6.1?
===========================