From e233647d825309c98e6a64e490eb8aaa299cfe6d Mon Sep 17 00:00:00 2001 From: Cooper Ry Lees Date: Tue, 28 Jan 2020 19:08:49 -0800 Subject: [PATCH] Move to Version 20.1.3 + Update CHANGES in README.rst --- README.rst | 6 ++++++ bugbear.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index fc10ebc..6c78258 100644 --- a/README.rst +++ b/README.rst @@ -238,6 +238,12 @@ MIT Change Log ---------- +20.1.3 +~~~~~~ + +* Silence B009/B010 for non-identifiers +* State an ignore might be needed for optional B9x checks + 20.1.2 ~~~~~~ diff --git a/bugbear.py b/bugbear.py index c759a28..5feea55 100644 --- a/bugbear.py +++ b/bugbear.py @@ -11,7 +11,7 @@ import pycodestyle -__version__ = "20.1.2" +__version__ = "20.1.3" LOG = logging.getLogger("flake8.bugbear")