diff --git a/README.rst b/README.rst index 815e32e..4e881dd 100644 --- a/README.rst +++ b/README.rst @@ -340,11 +340,15 @@ MIT Change Log ---------- -Unreleased -~~~~~~~~~~ +23.11.26 +~~~~~~~~ -* B026: Fix bug where the check was not triggered for calls where the callee - is an attribute +* B035: add check for static keys in dict-comprehension (#426) +* B902: Add exceptions for standard library metaclasses (#415) +* B017: Modify to no longer have a false negative when raises() is imported + directly from pytest (#424) +* B026: Fix bug where the check was not triggered for calls where the caller + is an attribute (#420) 23.9.16 ~~~~~~~ diff --git a/bugbear.py b/bugbear.py index 3b4fc3a..f266118 100644 --- a/bugbear.py +++ b/bugbear.py @@ -15,7 +15,7 @@ import attr import pycodestyle -__version__ = "23.9.16" +__version__ = "23.11.26" LOG = logging.getLogger("flake8.bugbear") CONTEXTFUL_NODES = (