Skip to content

Commit cd22a16

Browse files
committed
fix: codemeta maintainer representtion
1 parent 07aed78 commit cd22a16

File tree

6 files changed

+31
-27
lines changed

6 files changed

+31
-27
lines changed

CITATION.cff

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,13 @@ authors:
1010
orcid: "https://orcid.org/0000-0003-0900-6903"
1111

1212

13+
maintainers:
14+
- family-names: Doiel
15+
given-names: R. S.
16+
orcid: "https://orcid.org/0000-0003-0900-6903"
1317

1418
repository-code: "https://github.com/caltechlibrary/datatools"
15-
version: 1.1.4
19+
version: 1.1.5
1620
license-url: "https://data.caltech.edu/license"
1721
keywords: [ "csv", "json", "xlsx", "golang", "bash" ]
1822
date-released: 2022-06-30

about.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors:
1111
orcid: "https://orcid.org/0000-0003-0900-6903"
1212

1313
repository-code: "https://github.com/caltechlibrary/datatools"
14-
version: 1.1.4
14+
version: 1.1.5
1515
license-url: "https://data.caltech.edu/license"
1616
keywords: [ "csv", "json", "xlsx", "golang", "bash" ]
1717
date-released: 2022-06-30
@@ -20,32 +20,28 @@ date-released: 2022-06-30
2020
About this software
2121
===================
2222

23-
## datatools 1.1.4
23+
## datatools 1.1.5
2424

2525
### Authors
2626

2727
- R. S. Doiel
2828

29-
A set of command line tools for working with CSV, Excel Workbooks, JSON
30-
and structured text documents.
3129

30+
### Maintainers
3231

32+
- R. S. Doiel
3333

3434
A set of command line tools for working with CSV, Excel Workbooks, JSON
3535
and structured text documents.
3636

37-
A set of command line tools for working with CSV, Excel Workbooks, JSON
38-
and structured text documents.
39-
40-
4137
- License: https://data.caltech.edu/license
4238
- GitHub: https://github.com/caltechlibrary/datatools
4339
- Issues: https://github.com/caltechlibrary/datatools/issues
4440

4541

4642
### Programming languages
4743

48-
- Go 1.19.2
44+
- Go 1.19.4
4945

5046
### Operating Systems
5147

@@ -55,5 +51,5 @@ and structured text documents.
5551

5652
### Software Requiremets
5753

58-
- Golang 1.19.2 or better
59-
- Pandoc 2.19.2 or better
54+
- Golang 1.19 or better
55+
- Pandoc 2.19 or better

codemeta-md.tmpl

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ ${for(author)}
3030
${endfor}
3131
${endif}
3232

33-
${if(description)}
34-
${description}
35-
${endif}
36-
3733
${if(contributor)}
3834
### Contributors
3935

@@ -54,11 +50,6 @@ ${if(description)}
5450
${description}
5551
${endif}
5652

57-
${if(description)}
58-
${description}
59-
${endif}
60-
61-
6253
${if(license)}- License: ${license}${endif}
6354
${if(codeRepository)}- GitHub: ${codeRepository}${endif}
6455
${if(issueTracker)}- Issues: ${issueTracker}${endif}

codemeta.json

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"downloadUrl": "https://github.com/caltechlibrary/datatools/releases/",
1010
"issueTracker": "https://github.com/caltechlibrary/datatools/issues",
1111
"name": "datatools",
12-
"version": "1.1.4",
12+
"version": "1.1.5",
1313
"description": "A set of command line tools for working with CSV, Excel Workbooks, JSON and structured text documents.",
1414
"applicationCategory": "computer programming",
1515
"developmentStatus": "active",
@@ -25,16 +25,16 @@
2525
"bash"
2626
],
2727
"programmingLanguage": [
28-
"Go 1.19.2"
28+
"Go 1.19.4"
2929
],
3030
"operatingSystem": [
3131
"Linux",
3232
"Windows",
3333
"macOS"
3434
],
3535
"softwareRequirements": [
36-
"Golang 1.19.2 or better",
37-
"Pandoc 2.19.2 or better"
36+
"Golang 1.19 or better",
37+
"Pandoc 2.19 or better"
3838
],
3939
"author": [
4040
{
@@ -48,5 +48,18 @@
4848
"name": "Caltech Library"
4949
}
5050
}
51+
],
52+
"maintainer": [
53+
{
54+
"@type": "Person",
55+
"@id": "https://orcid.org/0000-0003-0900-6903",
56+
"givenName": "R. S.",
57+
"familyName": "Doiel",
58+
"email": "[email protected]",
59+
"affiliation": {
60+
"@type": "Organization",
61+
"name": "Caltech Library"
62+
}
63+
}
5164
]
5265
}

codemeta/codemeta.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ type Codemeta struct {
3636
Version string `json:"version"`
3737
Author []*PersonOrOrganization `json:"author"`
3838
Contributor []*PersonOrOrganization `json:"contributor,omitempty"`
39-
Maintainer []*PersonOrOrganization `json:"maintainer,omitempty"`
4039
Editor []*PersonOrOrganization `json:"editor,omitempty"`
40+
Maintainer []*PersonOrOrganization `json:"maintainer,omitempty"`
4141
DevelopmentStatus string `json:"developmentStatus"`
4242
DownloadURL string `json:"downloadUrl"`
4343
Keywords []string `json:"keywords"`

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package datatools
22

3-
const Version = "1.1.4"
3+
const Version = "1.1.5"
44

0 commit comments

Comments
 (0)