Skip to content

Commit cf17bb4

Browse files
committed
prep for v1.0.5 release
1 parent 0dfc72e commit cf17bb4

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ authors:
55
- family-names: Doiel
66
given-names: Robert
77
orcid: https://orcid.org/0000-0003-0900-6903
8-
version: 1.0.5-dev
8+
version: 1.0.5
99
title: datatools
10-
date-released: 2022-01-27
10+
date-released: 2022-05-11

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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-dev",
9+
"version": "1.0.5",
1010
"author": [
1111
{
1212
"@type": "Person",

make.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ go build -o bin\mergepath.exe cmd\mergepath\mergepath.exe
2828
go build -o bin\range.exe cmd\range\range.exe
2929
go build -o bin\reldate.exe cmd\reldate\reldate.exe
3030
go build -o bin\string.exe cmd\string\string.exe
31+
go build -o bin\tab2csv.exe cmd\tab2csv\tab2csv.exe
3132
go build -o bin\timefmt.exe cmd\timefmt\timefmt.exe
3233
go build -o bin\toml2json.exe cmd\toml2json\toml2json.exe
3334
go build -o bin\urlparse.exe cmd\urlparse\urlparse.exe
@@ -56,6 +57,7 @@ bin\mergepath.exe -version
5657
bin\range.exe -version
5758
bin\reldate.exe -version
5859
bin\string.exe -version
60+
bin\tab2csv.exe -version
5961
bin\timefmt.exe -version
6062
bin\toml2json.exe -version
6163
bin\urlparse.exe -version

snap/snapcraft.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: datatools # Caltech Library Datatools
22
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
44
summary: Command line tools for processing text data files
55
description: |
66
A set of command line tools for working with CSV, Excel Workbooks,
77
JSON and structured text documents.
88
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
1111

1212
apps:
1313
codemeta2cff:

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.0.5-dev"
3+
const Version = "1.0.5"
44

0 commit comments

Comments
 (0)