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: