diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index 98132ca..75d7a98 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -2,6 +2,5 @@ name: strip-exif description: This hook ensures that no image metadata (EXIF) is present on images added to version control. entry: strip-exif - require_serial: false language: python types: [image] diff --git a/README.md b/README.md index 3b3bbdb..161dd1d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Add the following to your `.pre-commit-config.yaml` file: ```yaml - repo: https://github.com/stefmolin/exif-stripper - rev: 0.1.1 + rev: 0.1.2 hooks: - id: strip-exif ``` diff --git a/src/exif_stripper/__init__.py b/src/exif_stripper/__init__.py index cafa3bd..c096698 100644 --- a/src/exif_stripper/__init__.py +++ b/src/exif_stripper/__init__.py @@ -1,3 +1,3 @@ """EXIF stripper.""" -__version__ = '0.1.1' +__version__ = '0.1.2'