Skip to content

Commit 3e41594

Browse files
authored
Merge pull request #20 from willynilly/develop
Develop
2 parents 97c4553 + 1fb2f10 commit 3e41594

File tree

6 files changed

+10
-11
lines changed

6 files changed

+10
-11
lines changed

.github/workflows/check-same-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
cache: 'pip' # optional and only works for Python projects
2727

2828
- name: Run same-version
29-
uses: willynilly/same-version@v7.0.0
29+
uses: willynilly/same-version@v7.1.0
3030
with:
3131
fail_for_missing_file: false
3232
check_github_event: true

.github/workflows/review-cff-authors-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install Python
2525
uses: actions/setup-python@v5
2626
with:
27-
python-version: ">=3.13.3" # required for cff-author-updater
27+
python-version: ">=3.10" # required for cff-author-updater
2828
cache: 'pip' # optional for cff-author-updater
2929

3030
- name: Run cff-author-updater

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ keywords:
3434
- metadata
3535
- harmonization
3636
license: Apache-2.0
37-
version: "7.0.0"
37+
version: "7.1.0"
3838
date-released: "2025-06-10"
3939
references:
4040
- title: Citation File Format

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ jobs:
259259
python-version: ">=3.10"
260260

261261
- name: Run same-version
262-
uses: willynilly/same-version@v7.0.0
262+
uses: willynilly/same-version@v7.1.0
263263
with:
264264
fail_for_missing_file: false
265265
check_github_event: true
@@ -309,7 +309,7 @@ jobs:
309309
python-version: ">=3.10"
310310

311311
- name: Run same-version
312-
uses: willynilly/same-version@v7.0.0
312+
uses: willynilly/same-version@v7.1.0
313313
with:
314314
fail_for_missing_file: false
315315
check_github_event: true
@@ -347,7 +347,7 @@ Add to your `.pre-commit-config.yaml`:
347347
```yaml
348348
repos:
349349
- repo: https://github.com/willynilly/same-version
350-
rev: v7.0.0 # Use latest tag
350+
rev: v7.1.0 # Use latest tag
351351
hooks:
352352
- id: same-version
353353
stages: [pre-commit, pre-push]

example.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/willynilly/same-version
3-
rev: v7.0.0 # Use latest tag
3+
rev: v7.1.0 # Use latest tag
44
hooks:
55
- id: same-version
66
stages: [pre-commit, pre-push]

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "same-version"
7-
version = "7.0.0"
7+
version = "7.1.0"
88
description = "Automatically ensures your software version metadata is consistent across key project files."
99
readme = "README.md"
1010
requires-python = ">=3.10"
@@ -56,11 +56,10 @@ pythonpath = [
5656
[tool.hatch.build]
5757
include = ["src/same_version/**", "CITATION.cff"]
5858
license-files = ["LICEN[CS]E*"]
59-
sources = ["src"]
6059

6160
[tool.hatch.build.targets.wheel]
62-
packages = ["same_version"]
63-
sources = ["src"]
61+
packages = ["src/same_version"]
62+
6463

6564
[project.scripts]
6665
same-version = "same_version.main:main"

0 commit comments

Comments
 (0)