Skip to content

Commit f137242

Browse files
committed
Merge tag 'v26.2.1' of https://github.com/nfdi4cat/voc4cat-template into update-to-voc4cat-tool-1.0.4
Release 26.2.1
2 parents 21c3c4e + 74de2cb commit f137242

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
python -m pip install --upgrade pip setuptools wheel
7474
7575
# Select to install a stable tagged version or main branch (in development)
76-
python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@v1.0.3
76+
python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@v1.0.4
7777
# python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@main
7878
7979
# install custom pylode 2.x (adds sorted collections,
@@ -120,7 +120,7 @@ jobs:
120120
find inbox-excel-vocabs -name '*.xlsx' -exec cp {} -t outbox/ \;
121121
git status
122122
# Add/update dct:created and dct:modified base on git history
123-
voc4cat transform --prov-from-git --inplace --config idranges.toml --logfile outbox/voc4cat.log vocabularies/
123+
voc4cat transform --prov-from-git --diff-base origin/main --inplace --config idranges.toml --logfile outbox/voc4cat.log vocabularies/
124124
125125
- name: Run voc4cat (re-build updated Excel file and joined turtle vocabulary file)
126126
# Passing the config is important to make use of the prefixes therein.

.github/workflows/merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
python -m pip install --upgrade pip setuptools wheel
6868
6969
# Select to install a stable tagged version or main branch (in development)
70-
python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@v1.0.3
70+
python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@v1.0.4
7171
# python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@main
7272
7373
# install custom pylode 2.x

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
python -m pip install --upgrade pip setuptools wheel
6262
6363
# Select to install a stable tagged version or main branch (in development)
64-
python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@v1.0.3
64+
python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@v1.0.4
6565
# python -m pip install git+https://github.com/nfdi4cat/voc4cat-tool.git@main
6666
6767
# install custom pylode 2.x

README_TEMPLATE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,17 +120,17 @@ After these steps your repository should work just like [voc4cat](https://github
120120

121121
### Keeping your vocabulary repository in sync with voc4cat-template
122122

123-
To review the changes made in the template in version 1.x.y and compare to when you last pulled it use:
123+
To review the changes made in the template in version 26.x and compare to when you last pulled it use:
124124

125125
```gitattributes
126-
git fetch https://github.com/nfdi4cat/voc4cat-template tag v1.x.y
126+
git fetch https://github.com/nfdi4cat/voc4cat-template tag v26.x
127127
git diff ...FETCH_HEAD
128128
```
129129

130130
If you want to take over the changes, pull them into your repository
131131

132132
```gitattributes
133-
git pull https://github.com/nfdi4cat/voc4cat-template tag v1.x.y
133+
git pull https://github.com/nfdi4cat/voc4cat-template tag v26.x
134134
```
135135

136136
and push the change to the remote repository.

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ join:
8989
# Add provenance information to all ttl files in vocabularies/
9090
[group('individual steps')]
9191
prov:
92-
voc4cat transform --prov-from-git --inplace --config idranges.toml --logfile outbox/voc4cat.log vocabularies/
92+
voc4cat transform --prov-from-git --diff-base origin/main --inplace --config idranges.toml --logfile outbox/voc4cat.log vocabularies/
9393

9494
# Run all steps as in gh-actions: check xlsx, convert to SKOS, build docs, re-build xlsx
9595
all: check convert docs xlsx

0 commit comments

Comments
 (0)