Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-same-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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]
Expand Down
8 changes: 8 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion example.pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -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]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading