diff --git a/README.rst b/README.rst index d8849dc..94d6cbb 100644 --- a/README.rst +++ b/README.rst @@ -350,6 +350,14 @@ MIT Change Log ---------- +23.1.15 +~~~~~~~ + +* B038: Add check for mutations of loop iterator (#446) +* B037: Add check for yielding or returning values in __init__() (#442) +* B017: make B017 also apply to BaseException (#439) +* B036: Add check for except BaseException without re-raising (#438) + 23.12.2 ~~~~~~~ diff --git a/bugbear.py b/bugbear.py index d126e90..64cab75 100644 --- a/bugbear.py +++ b/bugbear.py @@ -17,7 +17,7 @@ import attr import pycodestyle -__version__ = "23.12.2" +__version__ = "23.1.15" LOG = logging.getLogger("flake8.bugbear") CONTEXTFUL_NODES = (