diff --git a/.github/workflows/check-same-version.yml b/.github/workflows/check-same-version.yml index 5e732b5..338726f 100644 --- a/.github/workflows/check-same-version.yml +++ b/.github/workflows/check-same-version.yml @@ -26,7 +26,7 @@ jobs: cache: 'pip' # optional and only works for Python projects - name: Run same-version - uses: willynilly/same-version@v6.0.0 + uses: willynilly/same-version@v6.1.0 with: fail_for_missing_file: false check_github_event: true diff --git a/CITATION.cff b/CITATION.cff index d1e862d..6263b23 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -34,7 +34,7 @@ keywords: - metadata - harmonization license: Apache-2.0 -version: "6.0.0" +version: "6.1.0" date-released: "2025-06-10" references: - title: Citation File Format diff --git a/README.md b/README.md index 188c091..7b72a4c 100644 --- a/README.md +++ b/README.md @@ -259,7 +259,7 @@ jobs: python-version: ">=3.10" - name: Run same-version - uses: willynilly/same-version@v6.0.0 + uses: willynilly/same-version@v6.1.0 with: fail_for_missing_file: false check_github_event: true @@ -309,7 +309,7 @@ jobs: python-version: ">=3.10" - name: Run same-version - uses: willynilly/same-version@v6.0.0 + uses: willynilly/same-version@v6.1.0 with: fail_for_missing_file: false check_github_event: true @@ -347,7 +347,7 @@ Add to your `.pre-commit-config.yaml`: ```yaml repos: - repo: https://github.com/willynilly/same-version - rev: v6.0.0 # Use latest tag + rev: v6.1.0 # Use latest tag hooks: - id: same-version stages: [pre-commit, pre-push] diff --git a/action.yml b/action.yml index 5e9e80e..f736c33 100644 --- a/action.yml +++ b/action.yml @@ -120,6 +120,14 @@ inputs: py_version_assignment_path: description: 'Path to Python file with __version__ assignment' required: false + check_nuspec: + description: 'Check .nuspec? (true/false)' + required: false + default: 'true' + nuspec_path: + description: 'Path to .nuspec' + required: false + default: '.nuspec' check_ro_crate_metadata_json: description: 'Check ro-crate-metadata.json? (true/false)' required: false diff --git a/example.pre-commit-config.yaml b/example.pre-commit-config.yaml index 6698d6c..e5cf20f 100644 --- a/example.pre-commit-config.yaml +++ b/example.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/willynilly/same-version - rev: v6.0.0 # Use latest tag + rev: v6.1.0 # Use latest tag hooks: - id: same-version stages: [pre-commit, pre-push] diff --git a/pyproject.toml b/pyproject.toml index 6dfafeb..b26f1b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "same-version" -version = "6.0.0" +version = "6.1.0" description = "Automatically ensures your software version metadata is consistent across key project files." readme = "README.md" requires-python = ">=3.10"