From a8074406bf785cb287dfe1809e79ac6856bf65b2 Mon Sep 17 00:00:00 2001 From: francisco souza <108725+fsouza@users.noreply.github.com> Date: Tue, 31 Jan 2023 10:56:38 -0500 Subject: [PATCH] Bump to 2.0.1 --- README.md | 2 +- autoflake.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 48b6e96..4cc6e8b 100644 --- a/README.md +++ b/README.md @@ -201,7 +201,7 @@ Add the following to your `.pre-commit-config.yaml` ```yaml - repo: https://github.com/PyCQA/autoflake - rev: v2.0.0 + rev: v2.0.1 hooks: - id: autoflake ``` diff --git a/autoflake.py b/autoflake.py index 46823c1..b219c5a 100755 --- a/autoflake.py +++ b/autoflake.py @@ -40,7 +40,7 @@ import pyflakes.reporter -__version__ = "2.0.0" +__version__ = "2.0.1" _LOGGER = logging.getLogger("autoflake")