From 197ac363ddc4e233901166121a8dc3075f9e3694 Mon Sep 17 00:00:00 2001 From: Stefanie Molin <24376333+stefmolin@users.noreply.github.com> Date: Wed, 13 Nov 2024 08:40:53 -0500 Subject: [PATCH] Adjust name in pre-commit output (#62) --- .pre-commit-hooks.yaml | 2 +- README.md | 2 +- src/exif_stripper/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index f5bac27..72a9104 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -1,5 +1,5 @@ - id: strip-exif - name: Strip EXIF metadata + name: strip EXIF metadata description: | This hook ensures that no image metadata (EXIF) is present on images added to version control. entry: exif-stripper diff --git a/README.md b/README.md index 869b115..3bd34cd 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Add the following to your `.pre-commit-config.yaml` file: ```yaml - repo: https://github.com/stefmolin/exif-stripper - rev: 0.6.0 + rev: 0.6.1 hooks: - id: strip-exif ``` diff --git a/src/exif_stripper/__init__.py b/src/exif_stripper/__init__.py index 6ae738a..8b9f747 100644 --- a/src/exif_stripper/__init__.py +++ b/src/exif_stripper/__init__.py @@ -7,7 +7,7 @@ from PIL import Image, UnidentifiedImageError -__version__ = '0.6.0' +__version__ = '0.6.1' def process_image(filename: str | os.PathLike) -> bool: