File tree Expand file tree Collapse file tree 5 files changed +14
-10
lines changed Expand file tree Collapse file tree 5 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 55 - family-names : Doiel
66 given-names : Robert
77 orcid : https://orcid.org/0000-0003-0900-6903
8- version : 1.0.5
8+ version : 1.1.0
99title : datatools
10- date-released : 2022-05-11
10+ date-released : 2022-06-23
Original file line number Diff line number Diff line change @@ -75,9 +75,10 @@ clean:
7575 @if [ -d dist ]; then rm -fR dist; fi
7676 @if [ -d man ]; then rm -fR man; fi
7777
78+ # NOTE: macOS causes problems if you copy a binary versus move it.
7879install : build
7980 @echo " Installing programs in $( PREFIX) /bin"
80- @for FNAME in $(PROGRAMS ) ; do if [ -f ./bin/$$ FNAME ]; then cp -v ./bin/$$ FNAME $( PREFIX) /bin/$$ FNAME; fi ; done
81+ @for FNAME in $(PROGRAMS ) ; do if [ -f ./bin/$$ FNAME ]; then mv -v ./bin/$$ FNAME $( PREFIX) /bin/$$ FNAME; fi ; done
8182 @echo " "
8283 @echo " Make sure $( PREFIX) /bin is in your PATH"
8384
Original file line number Diff line number Diff line change 66 "codeRepository" : " https://github.com/caltechlibrary/datatools" ,
77 "issueTracker" : " https://github.com/caltechlibrary/datatools/issues" ,
88 "license" : " https://data.caltech.edu/license" ,
9- "version" : " 1.0.5 " ,
9+ "version" : " 1.1.0 " ,
1010 "author" : [
1111 {
1212 "@type" : " Person" ,
1313 "givenName" : " Robert" ,
1414 "familyName" : " Doiel" ,
15- "affiliation" : " Caltech Library" ,
15+ "affiliation" : {
16+ "@type" : " Organization" ,
17+ "name" : " Caltech Library"
18+ },
16191720 "@id" : " https://orcid.org/0000-0003-0900-6903"
1821 }
Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ type PersonOrOrganization struct {
1717 // Name is used by organizations
1818 Name string `json:"name,omitempty"`
1919 // Given/Family are used by individual persons
20- GivenName string `json:"givenName,omitempty"`
21- FamilyName string `json:"familyName,omitempty"`
22- Affiliation string `json:"affiliation,omitempty"`
23- Email string `json:"email,omitempty"`
20+ GivenName string `json:"givenName,omitempty"`
21+ FamilyName string `json:"familyName,omitempty"`
22+ Affiliation * PersonOrOrganization `json:"affiliation,omitempty"`
23+ Email string `json:"email,omitempty"`
2424}
2525
2626type Codemeta struct {
Original file line number Diff line number Diff line change 11package datatools
22
3- const Version = "1.0.5 "
3+ const Version = "1.1.0 "
44
You can’t perform that action at this time.
0 commit comments