Skip to content

Commit ff4493f

Browse files
author
R. S. Doiel
committed
fix issue #21, CopyrightYear is an int rather than string
1 parent d0bf489 commit ff4493f

File tree

100 files changed

+142
-142
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+142
-142
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ maintainers:
1515
orcid: "https://orcid.org/0000-0003-0900-6903"
1616

1717
repository-code: "https://github.com/caltechlibrary/datatools"
18-
version: 1.2.10
18+
version: 1.2.11
1919
license-url: "https://data.caltech.edu/license"
2020
keywords: [ "csv", "excel", "sql", "json", "yaml", "xlsx", "golang", "bash" ]

about.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<section>
2727
<h1 id="about-this-software">About this software</h1>
28-
<h2 id="datatools-1.2.10">datatools 1.2.10</h2>
28+
<h2 id="datatools-1.2.11">datatools 1.2.11</h2>
2929
<h3 id="authors">Authors</h3>
3030
<ul>
3131
<li>R. S. Doiel</li>
@@ -46,7 +46,7 @@ <h3 id="maintainers">Maintainers</h3>
4646
</ul>
4747
<h3 id="programming-languages">Programming languages</h3>
4848
<ul>
49-
<li>Go 1.22</li>
49+
<li>Go 1.23.2</li>
5050
</ul>
5151
<h3 id="operating-systems">Operating Systems</h3>
5252
<ul>
@@ -56,7 +56,7 @@ <h3 id="operating-systems">Operating Systems</h3>
5656
</ul>
5757
<h3 id="software-requiremets">Software Requiremets</h3>
5858
<ul>
59-
<li>Golang 1.22 or better</li>
59+
<li>Golang 1.23.2 or better</li>
6060
<li>Pandoc 3.1 or better</li>
6161
</ul>
6262
</section>

about.md

Lines changed: 4 additions & 4 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.2.10
14+
version: 1.2.11
1515
license-url: "https://data.caltech.edu/license"
1616
keywords: [ "csv", "excel", "sql", "json", "yaml", "xlsx", "golang", "bash" ]
1717

@@ -20,7 +20,7 @@ keywords: [ "csv", "excel", "sql", "json", "yaml", "xlsx", "golang", "bash" ]
2020
About this software
2121
===================
2222

23-
## datatools 1.2.10
23+
## datatools 1.2.11
2424

2525
### Authors
2626

@@ -41,7 +41,7 @@ and structured text documents.
4141

4242
### Programming languages
4343

44-
- Go 1.22
44+
- Go 1.23.2
4545

4646
### Operating Systems
4747

@@ -51,5 +51,5 @@ and structured text documents.
5151

5252
### Software Requiremets
5353

54-
- Golang 1.22 or better
54+
- Golang 1.23.2 or better
5555
- Pandoc 3.1 or better

codemeta.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"license": "https://data.caltech.edu/license",
55
"codeRepository": "https://github.com/caltechlibrary/datatools",
66
"dateCreated": "2017-02-06",
7-
"dateRelease": "2024-08-26",
8-
"dateModified": "2024-08-26",
7+
"dateRelease": "2024-10-24",
8+
"dateModified": "2024-10-24",
99
"downloadUrl": "https://github.com/caltechlibrary/datatools/releases/",
1010
"issueTracker": "https://github.com/caltechlibrary/datatools/issues",
1111
"name": "datatools",
12-
"version": "1.2.10",
12+
"version": "1.2.11",
1313
"description": "A set of command line tools for working with CSV, Excel Workbooks, JSON and structured text documents.",
14-
"releaseNotes": "Bug fix when no args provided",
14+
"releaseNotes": "fix isssue#21, CopyrightYear is an int",
1515
"applicationCategory": "computer programming",
1616
"developmentStatus": "active",
1717
"funder": {
@@ -30,15 +30,15 @@
3030
"bash"
3131
],
3232
"programmingLanguage": [
33-
"Go 1.22"
33+
"Go 1.23.2"
3434
],
3535
"operatingSystem": [
3636
"Linux",
3737
"Windows",
3838
"macOS"
3939
],
4040
"softwareRequirements": [
41-
"Golang 1.22 or better",
41+
"Golang 1.23.2 or better",
4242
"Pandoc 3.1 or better"
4343
],
4444
"author": [

codemeta/codemeta.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ type Codemeta struct {
4444
//Funder []*PersonOrOrganization `json:"funder,omitempty"`
4545
Funder *PersonOrOrganization `json:"funder,omitempty"`
4646
CopyrightHolder []*PersonOrOrganization `json:"copyrightHolder,omitempty"`
47-
CopyrightYear string `json:"copyrightYear,omitempty"`
47+
CopyrightYear int `json:"copyrightYear,omitempty"`
4848
Created string `json:"dateCreated,omitempty"`
4949
Updated string `json:"dateModified,omitempty"`
5050
Published string `json:"datePublished,omitempty"`

codemeta2cff.1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
%codemeta2cff(1) user manual | version 1.2.10 9821b18
1+
%codemeta2cff(1) user manual | version 1.2.11 d0bf489
22
% R. S. Doiel
3-
% 2024-08-26
3+
% 2024-10-24
44

55
# NAME
66

csv2json.1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
%csv2json(1) user manual | version 1.2.10 9821b18
1+
%csv2json(1) user manual | version 1.2.11 d0bf489
22
% R. S. Doiel
3-
% 2024-08-26
3+
% 2024-10-24
44

55
# NAME
66

csv2mdtable.1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h1 id="examples">EXAMPLES</h1>
7979
<pre><code> cat data1.csv | csv2mdtable &gt; data1.md</code></pre>
8080
<p>Convert data1.csv to data1.md using options.</p>
8181
<pre><code> csv2mdtable -i data1.csv -o data1.md</code></pre>
82-
<p>csv2mdtable 1.2.10</p>
82+
<p>csv2mdtable 1.2.11</p>
8383
</section>
8484

8585
<footer>

csv2mdtable.1.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
%csv2mdtable(1) user manual | version 1.2.10 9821b18
1+
%csv2mdtable(1) user manual | version 1.2.11 d0bf489
22
% R. S. Doiel
3-
% 2024-08-26
3+
% 2024-10-24
44

55
# NAME
66

@@ -62,6 +62,6 @@ Convert data1.csv to data1.md using options.
6262
csv2mdtable -i data1.csv -o data1.md
6363
~~~
6464

65-
csv2mdtable 1.2.10
65+
csv2mdtable 1.2.11
6666

6767

csv2tab.1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ <h1 id="examples">EXAMPLES</h1>
5656
<p>This would yield</p>
5757
<pre><code> name email age
5858
Doe, Jane [email protected] 42</code></pre>
59-
<p>csv2tab 1.2.10</p>
59+
<p>csv2tab 1.2.11</p>
6060
</section>
6161

6262
<footer>

0 commit comments

Comments
 (0)