diff --git a/README.rst b/README.rst index 291d489..bdaf7b1 100644 --- a/README.rst +++ b/README.rst @@ -249,9 +249,13 @@ MIT Change Log ---------- -Next version +20.11.1 ~~~~~~~~~~~~ +* Support exception aliases properly in B014 (#129) +* Add B015: Pointless comparison (#130) +* Remove check for # noqa comments (#134) +* Ignore exception classes which are not types (#135) * Introduce B016 to check for raising a literal. (#141) * Exclude types.MappingProxyType() from B008. (#144) diff --git a/bugbear.py b/bugbear.py index fc5c537..b137d03 100644 --- a/bugbear.py +++ b/bugbear.py @@ -11,7 +11,7 @@ import attr import pycodestyle -__version__ = "20.1.4" +__version__ = "20.11.1" LOG = logging.getLogger("flake8.bugbear")