diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index 4a8618a..83f53a2 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -32,7 +32,7 @@ jobs: publish-to-pypi: name: >- Publish Python 🐍 distribution 📦 to PyPI - if: startsWith(github.ref, 'refs/tags/') && !contains(github.ref, '.rc') # only publish releases to PyPI on tag pushes + if: startsWith(github.ref, 'refs/tags/') && !contains(github.ref, '-rc') # only publish releases to PyPI on tag pushes needs: - build runs-on: ubuntu-latest @@ -96,7 +96,7 @@ jobs: publish-to-testpypi: name: Publish Python 🐍 distribution 📦 to TestPyPI - if: startsWith(github.ref, 'refs/tags/') && contains(github.ref, '.rc') # only publish release candidates to TestPyPI on tag pushes + if: startsWith(github.ref, 'refs/tags/') && contains(github.ref, '-rc') # only publish release candidates to TestPyPI on tag pushes needs: - build runs-on: ubuntu-latest diff --git a/README.md b/README.md index e4a9cf1..3b3bbdb 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.0 + rev: 0.1.1 hooks: - id: strip-exif ``` diff --git a/src/exif_stripper/__init__.py b/src/exif_stripper/__init__.py index 05ed04b..cafa3bd 100644 --- a/src/exif_stripper/__init__.py +++ b/src/exif_stripper/__init__.py @@ -1,3 +1,3 @@ """EXIF stripper.""" -__version__ = '0.1.1.rc' +__version__ = '0.1.1'