From 77288b33c07c8350523c025935a83ef6cd58419d Mon Sep 17 00:00:00 2001 From: Cooper Lees Date: Mon, 23 Nov 2020 12:40:04 -0800 Subject: [PATCH] Move to Version 20.11.1 + Update CHANGES in README.rst (#146) --- README.rst | 6 +++++- bugbear.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) 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")