From ace91cc170fbace0adea07c4edf1b4f9127d7005 Mon Sep 17 00:00:00 2001 From: Cooper Ry Lees Date: Wed, 29 Sep 2021 07:36:30 -0700 Subject: [PATCH] Update setup.py + Change Log for 21.9.2 release --- README.rst | 3 ++- bugbear.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index f2fdb8b..6ccb84e 100644 --- a/README.rst +++ b/README.rst @@ -222,9 +222,10 @@ MIT Change Log ---------- -Unreleased +21.9.2 ~~~~~~~~~~ +* Fix crash on call in except statement in _to_name_str (#187) * Update B006: list, dictionary, and set comprehensions are now also disallowed (#186) 21.9.1 diff --git a/bugbear.py b/bugbear.py index 1de708f..ba0294f 100644 --- a/bugbear.py +++ b/bugbear.py @@ -13,7 +13,7 @@ import pycodestyle -__version__ = "21.9.1" +__version__ = "21.9.2" LOG = logging.getLogger("flake8.bugbear")