From 0544741e2b4a22b472d9d93e37d4ea9153820bb1 Mon Sep 17 00:00:00 2001 From: francisco souza <108725+fsouza@users.noreply.github.com> Date: Tue, 12 Mar 2024 23:38:30 -0400 Subject: [PATCH] Bump to v2.3.1 --- README.md | 2 +- autoflake.py | 2 +- pyproject.toml | 7 +------ 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e7c2a3f..d56714b 100644 --- a/README.md +++ b/README.md @@ -206,7 +206,7 @@ Add the following to your `.pre-commit-config.yaml` ```yaml - repo: https://github.com/PyCQA/autoflake - rev: v2.3.0 + rev: v2.3.1 hooks: - id: autoflake ``` diff --git a/autoflake.py b/autoflake.py index 34c3282..ee9f186 100755 --- a/autoflake.py +++ b/autoflake.py @@ -50,7 +50,7 @@ import pyflakes.reporter -__version__ = "2.3.0" +__version__ = "2.3.1" _LOGGER = logging.getLogger("autoflake") diff --git a/pyproject.toml b/pyproject.toml index 2dee3f7..46b4741 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,10 +34,5 @@ path = "autoflake.py" exclude = ["/.github"] [tool.hatch.build] -include = [ - "/autoflake.py", - "/test_autoflake.py", - "/LICENSE", - "/README.md", -] +include = ["/autoflake.py", "/test_autoflake.py", "/LICENSE", "/README.md"] exclude = ["/.gitignore"]