Skip to content

Commit 961259b

Browse files
authored
Update version, add Zenodo metadata tracking (#36)
* increment version and set date for new release * Add Zenodo metadata tracking file with test for it
1 parent 083533c commit 961259b

File tree

4 files changed

+68
-6
lines changed

4 files changed

+68
-6
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Check zenodo metadata
2+
3+
on:
4+
push:
5+
paths:
6+
- '.zenodo.json'
7+
- '.github/workflows/validate-zenodo.yaml'
8+
9+
jobs:
10+
check-zenodo-metadata:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-node@v4
17+
with:
18+
node-version: '22'
19+
- name: Install dependencies
20+
run: npm install zenodraft@0.14.1
21+
- name: Check .zenodo.json file
22+
run: |
23+
npx zenodraft metadata validate .zenodo.json

.zenodo.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"creators": [
3+
{
4+
"name": "Kopanev, Andrei",
5+
"affiliation": "The Ohio State University"
6+
},
7+
{
8+
"name": "Thompson, Matthew J.",
9+
"orcid": "0000-0003-0583-8585",
10+
"affiliation": "The Ohio State University"
11+
},
12+
{
13+
"name": "Campolongo, Elizabeth G.",
14+
"orcid": "0000-0003-0846-2413",
15+
"affiliation": "The Ohio State University"
16+
}
17+
],
18+
"description": "MPI-based distributed downloading tool for retrieving data from diverse domains.",
19+
"keywords": [
20+
"parallel",
21+
"distributed",
22+
"download",
23+
"url",
24+
"dataset generation",
25+
"MPI application"
26+
],
27+
"license": {
28+
"id": "MIT"
29+
},
30+
"publication_date": "2025-10-22",
31+
"title": "Distributed-downloader",
32+
"version": "0.3.0-beta",
33+
"grants": [
34+
{
35+
"id": "021nxhr62::2118240"
36+
}
37+
]
38+
}

CITATION.cff

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ authors:
2424
orcid: 'https://orcid.org/0000-0003-0846-2413'
2525
repository-code: 'https://github.com/Imageomics/distributed-downloader'
2626
identifiers:
27-
- description: "The GitHub release URL of tag v0.2.0-beta."
27+
- description: "The GitHub release URL of tag v0.3.0-beta."
2828
type: url
29-
value: "https://github.com/Imageomics/distributed-downloader/releases/tag/v0.2.0-beta"
30-
- description: "The GitHub URL of the commit tagged with v0.2.0-beta."
29+
value: "https://github.com/Imageomics/distributed-downloader/releases/tag/v0.3.0-beta"
30+
- description: "The GitHub URL of the commit tagged with v0.3.0-beta."
3131
type: url
3232
value: "https://github.com/Imageomics/distributed-downloader/tree/<commit-hash>" # update post release
3333
abstract: >-
@@ -41,5 +41,6 @@ keywords:
4141
- "dataset generation"
4242
- "MPI application"
4343
license: MIT
44-
version: 0.2.0-beta
45-
date-released: '2025-04-17'
44+
version: 0.3.0-beta
45+
date-released: '2025-10-22'
46+
doi: # to be added post-release
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.0-beta"
1+
__version__ = "0.3.0-beta"

0 commit comments

Comments
 (0)