File tree Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 5
5
- family-names : Doiel
6
6
given-names : Robert
7
7
orcid : https://orcid.org/0000-0003-0900-6903
8
- version : 1.0.5-dev
8
+ version : 1.0.5
9
9
title : datatools
10
- date-released : 2022-01-27
10
+ date-released : 2022-05-11
Original file line number Diff line number Diff line change 6
6
"codeRepository" : " https://github.com/caltechlibrary/datatools" ,
7
7
"issueTracker" : " https://github.com/caltechlibrary/datatools/issues" ,
8
8
"license" : " https://data.caltech.edu/license" ,
9
- "version" : " 1.0.5-dev " ,
9
+ "version" : " 1.0.5" ,
10
10
"author" : [
11
11
{
12
12
"@type" : " Person" ,
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ go build -o bin\mergepath.exe cmd\mergepath\mergepath.exe
28
28
go build -o bin\range.exe cmd\range\range.exe
29
29
go build -o bin\reldate.exe cmd\reldate\reldate.exe
30
30
go build -o bin\string.exe cmd\string\string.exe
31
+ go build -o bin\tab2csv.exe cmd\tab2csv\tab2csv.exe
31
32
go build -o bin\timefmt.exe cmd\timefmt\timefmt.exe
32
33
go build -o bin\toml2json.exe cmd\toml2json\toml2json.exe
33
34
go build -o bin\urlparse.exe cmd\urlparse\urlparse.exe
@@ -56,6 +57,7 @@ bin\mergepath.exe -version
56
57
bin\range.exe -version
57
58
bin\reldate.exe -version
58
59
bin\string.exe -version
60
+ bin\tab2csv.exe -version
59
61
bin\timefmt.exe -version
60
62
bin\toml2json.exe -version
61
63
bin\urlparse.exe -version
Original file line number Diff line number Diff line change 1
1
name : datatools # Caltech Library Datatools
2
2
base : core20 # the base snap is the execution environment for this snap
3
- version : ' 1.0.5-dev ' # Development semver
3
+ version : ' 1.0.5' # Development semver
4
4
summary : Command line tools for processing text data files
5
5
description : |
6
6
A set of command line tools for working with CSV, Excel Workbooks,
7
7
JSON and structured text documents.
8
8
license : BSD-3-Clause
9
- grade : devel # must be 'stable' to release into candidate/stable channels
10
- confinement : devmode # use 'strict' once you have the right plugs and slots
9
+ grade : stable # must be 'stable' to release into candidate/stable channels
10
+ confinement : strict # use 'strict' once you have the right plugs and slots
11
11
12
12
apps :
13
13
codemeta2cff :
Original file line number Diff line number Diff line change 1
1
package datatools
2
2
3
- const Version = "1.0.5-dev "
3
+ const Version = "1.0.5"
4
4
You can’t perform that action at this time.
0 commit comments