From a2bbe4b1ab23e3ac4c6fbf234748ffb44775cd8d Mon Sep 17 00:00:00 2001 From: "R. S. Doiel" Date: Tue, 27 Feb 2024 10:58:05 -0800 Subject: [PATCH] release v1.2.7 --- CITATION.cff | 2 +- INSTALL.html | 223 ---------------------------------------- about.md | 4 +- codemeta2cff.1.md | 2 +- csv2json.1.md | 2 +- csv2mdtable.1.md | 4 +- csv2tab.1.md | 4 +- csv2xlsx.1.md | 4 +- csvcleaner.1.md | 4 +- csvcols.1.md | 4 +- csvfind.1.md | 4 +- csvjoin.1.md | 4 +- csvrows.1.md | 4 +- finddir.1.md | 4 +- findfile.1.md | 4 +- installer.sh | 2 +- json2toml.1.md | 4 +- json2yaml.1.md | 4 +- jsoncols.1.md | 4 +- jsonjoin.1.md | 2 +- jsonmunge.1.md | 4 +- jsonrange.1.md | 4 +- man/man1/codemeta2cff.1 | 2 +- man/man1/csv2json.1 | 2 +- man/man1/csv2mdtable.1 | 4 +- man/man1/csv2tab.1 | 4 +- man/man1/csv2xlsx.1 | 4 +- man/man1/csvcleaner.1 | 4 +- man/man1/csvcols.1 | 4 +- man/man1/csvfind.1 | 4 +- man/man1/csvjoin.1 | 4 +- man/man1/csvrows.1 | 4 +- man/man1/finddir.1 | 4 +- man/man1/findfile.1 | 4 +- man/man1/json2toml.1 | 4 +- man/man1/json2yaml.1 | 4 +- man/man1/jsoncols.1 | 4 +- man/man1/jsonjoin.1 | 2 +- man/man1/jsonmunge.1 | 4 +- man/man1/jsonrange.1 | 4 +- man/man1/mergepath.1 | 4 +- man/man1/range.1 | 2 +- man/man1/reldate.1 | 4 +- man/man1/reltime.1 | 2 +- man/man1/sql2csv.1 | 4 +- man/man1/string.1 | 4 +- man/man1/tab2csv.1 | 4 +- man/man1/timefmt.1 | 4 +- man/man1/toml2json.1 | 4 +- man/man1/urlparse.1 | 4 +- man/man1/xlsx2csv.1 | 4 +- man/man1/xlsx2json.1 | 4 +- man/man1/yaml2json.1 | 4 +- mergepath.1.md | 4 +- range.1.md | 2 +- reldate.1.md | 4 +- reltime.1.md | 2 +- sql2csv.1.md | 4 +- string.1.md | 4 +- tab2csv.1.md | 4 +- timefmt.1.md | 4 +- toml2json.1.md | 4 +- urlparse.1.md | 4 +- version.go | 4 +- xlsx2csv.1.md | 4 +- xlsx2json.1.md | 4 +- yaml2json.1.md | 4 +- 67 files changed, 120 insertions(+), 343 deletions(-) delete mode 100644 INSTALL.html diff --git a/CITATION.cff b/CITATION.cff index bc4ab33d..b7c81077 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -15,6 +15,6 @@ maintainers: orcid: "https://orcid.org/0000-0003-0900-6903" repository-code: "https://github.com/caltechlibrary/datatools" -version: 1.2.6 +version: 1.2.7 license-url: "https://data.caltech.edu/license" keywords: [ "csv", "excel", "sql", "json", "yaml", "xlsx", "golang", "bash" ] diff --git a/INSTALL.html b/INSTALL.html deleted file mode 100644 index 46d18fcc..00000000 --- a/INSTALL.html +++ /dev/null @@ -1,223 +0,0 @@ - - - - Caltech Library's Digital Library Development Sandbox - - - - -
-Caltech Library logo -
- - -
-

Installation

-

datatools is a collection of command line programs run from -a shell like Bash.

-

Quick install using curl

-

The following experimental installer should work for macOS and Linux -(e.g. Debian, Ubuntu, Raspberry Pi OS)

-

Copy and run the following command in your shell (e.g. Terminal)

-
curl https://caltechlibrary.github.io/datatools/installer.sh | sh
-

Compiled version

-

This is generalized instructions for a release.

-

Compiled versions are available for Mac OS X (Intel and M1 processor, -macos-x86_64 and macOS-arm64), Linux (Intel process, Linux-x86_64), -Windows (Intel and arm64 processor, windows-x86_64 and Windows-arm64) -and Rapsberry Pi (arm7 processor, RaspberryPiOS-arm7)

-

VERSION_NUMBER is a symantic version -number (e.g. v0.1.2)

-

For all the released version go to the project page on Github and -click latest release

-
-

https://github.com/caltechlibrary/datatools/releases/latest

-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
PlatformZip Filename
Windowsdatatools-VERSION_NUMBER-Windows-x86_64.zip
Windowsdatatools-VERSION_NUMBER-Windows-arm64.zip
Mac OS Xdatatools-VERSION_NUMBER-macOS-x86_64.zip
Mac OS Xdatatools-VERSION_NUMBER-macOS-arm64.zip
Linux/Inteldatatools-VERSION_NUMBER-Linux-x86_64.zip
Linux/ARM 64datatools-VERSION_NUMBER-Linux-aarch64.zip
Raspbery Pi OSdatatools-VERSION_NUMBER-RaspberryPiOS-arm7.zip
-

The basic recipe

- -

Mac OS

-
    -
  1. Download the zip file
  2. -
  3. Unzip the zip file
  4. -
  5. Copy the executables to $HOME/bin (or a folder in your path)
  6. -
  7. Make sure the new location in in our path
  8. -
  9. Test
  10. -
-

Here’s an example of the commands run in the Terminal App after -downloading the zip file.

-

Intel (x86_64) Hardware

-
    cd Downloads/
-    unzip datatools-*-macos-x86_64.zip
-    mkdir -p $HOME/bin
-    mv -v bin/* $HOME/bin/
-    export PATH=$HOME/bin:$PATH
-    csvfind -version
-

ARM64 (arm64) Hardware

-
    cd Downloads/
-    unzip datatools-*-macos-arm64.zip
-    mkdir -p $HOME/bin
-    mv -v bin/* $HOME/bin/
-    export PATH=$HOME/bin:$PATH
-    csvfind -version
-

Windows

-

(Assumes you’re working from Bash as provided by Linux Subsystem for -Windows)

-
    -
  1. Download the zip file
  2. -
  3. Unzip the zip file
  4. -
  5. Copy the executables to $HOME/bin (or a folder in your path)
  6. -
  7. Test
  8. -
-

Here’s an example of the commands run in from the Bash shell on -Windows 10 after downloading the zip file.

-

Intel (x86_64) Hardware

-
    cd Downloads/
-    unzip datatools-*-windows-x86_64.zip
-    mkdir -p $HOME/bin
-    mv -v bin/* $HOME/bin/
-    export PATH=$HOME/bin:$PATH
-    csvfind -version
-

ARM64 (arm64) Hardware

-
    cd Downloads/
-    unzip datatools-*-windows-arm64.zip
-    mkdir -p $HOME/bin
-    mv -v bin/* $HOME/bin/
-    export PATH=$HOME/bin:$PATH
-    csvfind -version
-

Linux

-
    -
  1. Download the zip file
  2. -
  3. Unzip the zip file
  4. -
  5. Copy the executables to $HOME/bin (or a folder in your path)
  6. -
  7. Test
  8. -
-

Here’s an example of the commands run in from the Bash shell after -downloading the zip file.

-
    cd Downloads/
-    unzip datatools-*-linux-x86_64.zip
-    mkdir -p $HOME/bin
-    cp -v bin/* $HOME/bin/
-    export PATH=$HOME/bin:$PATH
-    csvfind -version
-

Raspberry Pi

-

Released version is for a Raspberry Pi 2 or later use (i.e. requires -ARM 7 support).

-
    -
  1. Download the zip file
  2. -
  3. Unzip the zip file
  4. -
  5. Copy the executables to $HOME/bin (or a folder in your path)
  6. -
  7. Test
  8. -
-

Here’s an example of the commands run in from the Bash shell after -downloading the zip file.

-
    cd Downloads/
-    unzip datatools-*-raspberry_pi_os-arm7.zip
-    mkdir -p $HOME/bin
-    cp -v bin/* $HOME/bin/
-    export PATH=$HOME/bin:$PATH
-    csvfind -version
-

Compiling from source

-

datatools is “go gettable” if you have previously gotten -xlsx v1.0.5 package from github.com/tealeg/xlsx. The -datatools package does not support versions v2.x and greater of xlsx. -Below are the steps I use today with “go get” command to download the -dependant packages as well as datatools’s source code.

-

Setting up the right version of xlsx for datatools

-
    cd
-    go get github.com/tealeg/xlsx
-    cd src/github.com/tealeg
-    git checkout v1.0.5
-    cd
-

Using go get to install datatools using v1.0.5 of -xlsx.

-
    go get github.com/caltechlibrary/datatools/...
-

Or clone the repository and then compile

-
    cd
-    git clone https://github.com/caltechlibrary/datatools src/github.com/caltechlibrary/datatools
-    cd src/github.com/caltechlibrary/datatools
-    make
-    make test
-    make install
-
- - - - diff --git a/about.md b/about.md index a223e4cf..6250f315 100644 --- a/about.md +++ b/about.md @@ -11,7 +11,7 @@ authors: orcid: "https://orcid.org/0000-0003-0900-6903" repository-code: "https://github.com/caltechlibrary/datatools" -version: 1.2.6 +version: 1.2.7 license-url: "https://data.caltech.edu/license" keywords: [ "csv", "excel", "sql", "json", "yaml", "xlsx", "golang", "bash" ] @@ -20,7 +20,7 @@ keywords: [ "csv", "excel", "sql", "json", "yaml", "xlsx", "golang", "bash" ] About this software =================== -## datatools 1.2.6 +## datatools 1.2.7 ### Authors diff --git a/codemeta2cff.1.md b/codemeta2cff.1.md index 8d2ece34..a504b60e 100644 --- a/codemeta2cff.1.md +++ b/codemeta2cff.1.md @@ -1,4 +1,4 @@ -%codemeta2cff(1) user manual | version 1.2.6 14d3709 +%codemeta2cff(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 diff --git a/csv2json.1.md b/csv2json.1.md index 03651521..6093a604 100644 --- a/csv2json.1.md +++ b/csv2json.1.md @@ -1,4 +1,4 @@ -%csv2json(1) user manual | version 1.2.6 14d3709 +%csv2json(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 diff --git a/csv2mdtable.1.md b/csv2mdtable.1.md index 73ba36b1..f9e37441 100644 --- a/csv2mdtable.1.md +++ b/csv2mdtable.1.md @@ -1,4 +1,4 @@ -%csv2mdtable(1) user manual | version 1.2.6 14d3709 +%csv2mdtable(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -62,6 +62,6 @@ Convert data1.csv to data1.md using options. csv2mdtable -i data1.csv -o data1.md ~~~ -csv2mdtable 1.2.6 +csv2mdtable 1.2.7 diff --git a/csv2tab.1.md b/csv2tab.1.md index 443971b1..07d3a71d 100644 --- a/csv2tab.1.md +++ b/csv2tab.1.md @@ -1,4 +1,4 @@ -%csv2tab(1) user manual | version 1.2.6 14d3709 +%csv2tab(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -49,6 +49,6 @@ This would yield Doe, Jane jane.doe@example.org 42 ~~~ -csv2tab 1.2.6 +csv2tab 1.2.7 diff --git a/csv2xlsx.1.md b/csv2xlsx.1.md index cb9eb84d..ea43d680 100644 --- a/csv2xlsx.1.md +++ b/csv2xlsx.1.md @@ -1,4 +1,4 @@ -%csv2xlsx(1) user manual | version 1.2.6 14d3709 +%csv2xlsx(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -69,6 +69,6 @@ called 'MyWorkbook.xlsx' with the contents of data.csv. This does the same but the contents of data.csv are piped into the workbook's 'My worksheet 2' sheet. -csv2xlsx 1.2.6 +csv2xlsx 1.2.7 diff --git a/csvcleaner.1.md b/csvcleaner.1.md index e8af0578..a8b0333c 100644 --- a/csvcleaner.1.md +++ b/csvcleaner.1.md @@ -1,4 +1,4 @@ -%csvcleaner(1) user manual | version 1.2.6 14d3709 +%csvcleaner(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -107,5 +107,5 @@ Trim leading and trailing spaces from output. cat mysheet.csv | csvcleaner -trim-space ~~~ -csvcleaner 1.2.6 +csvcleaner 1.2.7 diff --git a/csvcols.1.md b/csvcols.1.md index 7ed2a9ec..70fd7495 100644 --- a/csvcols.1.md +++ b/csvcols.1.md @@ -1,4 +1,4 @@ -%csvcols(1) user manual | version 1.2.6 14d3709 +%csvcols(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -90,6 +90,6 @@ Using options filter a 3 column CSV file for columns 1,3 into 2col.csv csvcols -i 3col.csv -col 1,3 -o 2col.csv ~~~ -csvcols 1.2.6 +csvcols 1.2.7 diff --git a/csvfind.1.md b/csvfind.1.md index e6fe90b1..081feac9 100644 --- a/csvfind.1.md +++ b/csvfind.1.md @@ -1,4 +1,4 @@ -%csvfind(1) user manual | version 1.2.6 14d3709 +%csvfind(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -117,5 +117,5 @@ You can also search for phrases in columns. csvfind -i books.csv -col=2 -contains "Red Book" ~~~ -csvfind 1.2.6 +csvfind 1.2.7 diff --git a/csvjoin.1.md b/csvjoin.1.md index cf09e6c2..b6f24d82 100644 --- a/csvjoin.1.md +++ b/csvjoin.1.md @@ -1,4 +1,4 @@ -%csvjoin(1) user manual | version 1.2.6 14d3709 +%csvjoin(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -105,6 +105,6 @@ merged-data.csv.. -output=merged-data.csv ~~~ -csvjoin 1.2.6 +csvjoin 1.2.7 diff --git a/csvrows.1.md b/csvrows.1.md index 5ab6abe8..67ba169b 100644 --- a/csvrows.1.md +++ b/csvrows.1.md @@ -1,4 +1,4 @@ -%csvrows(1) user manual | version 1.2.6 14d3709 +%csvrows(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -96,6 +96,6 @@ a header row from 10row.csv. csvrows -i 10row.csv -header=true -random=3 ~~~ -csvrows 1.2.6 +csvrows 1.2.7 diff --git a/finddir.1.md b/finddir.1.md index 3a6ced1d..09792046 100644 --- a/finddir.1.md +++ b/finddir.1.md @@ -1,4 +1,4 @@ -%finddir(1) user manual | version 1.2.6 14d3709 +%finddir(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -65,5 +65,5 @@ Find all subdirectories starting with "img". finddir -p img ~~~ -finddir 1.2.6 +finddir 1.2.7 diff --git a/findfile.1.md b/findfile.1.md index a18f49f5..ff6c9090 100644 --- a/findfile.1.md +++ b/findfile.1.md @@ -1,4 +1,4 @@ -%findfile(1) user manual | version 1.2.6 14d3709 +%findfile(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -64,6 +64,6 @@ Search the current directory and subdirectories for Markdown files with extensio findfile -s .md ~~~ -findfile 1.2.6 +findfile 1.2.7 diff --git a/installer.sh b/installer.sh index 0ad29cc4..d4a277db 100755 --- a/installer.sh +++ b/installer.sh @@ -4,7 +4,7 @@ # Set the package name and version to install # PACKAGE="datatools" -VERSION="1.2.6" +VERSION="1.2.7" GIT_GROUP="caltechlibrary" RELEASE="https://github.com/$GIT_GROUP/$PACKAGE/releases/tag/v$VERSION" diff --git a/json2toml.1.md b/json2toml.1.md index f0cc6b03..231ff146 100644 --- a/json2toml.1.md +++ b/json2toml.1.md @@ -1,4 +1,4 @@ -%json2toml(1) user manual | version 1.2.6 14d3709 +%json2toml(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -50,6 +50,6 @@ These would get the file named "my.json" and save it as my.toml cat my.json | json2toml -i - > my.toml ~~~ -json2toml 1.2.6 +json2toml 1.2.7 diff --git a/json2yaml.1.md b/json2yaml.1.md index 39093fb4..609d993b 100644 --- a/json2yaml.1.md +++ b/json2yaml.1.md @@ -1,4 +1,4 @@ -%json2yaml(1) user manual | version 1.2.6 14d3709 +%json2yaml(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -47,6 +47,6 @@ These would get the file named "my.json" and save it as my.yaml cat my.json | json2yaml -i - > my.taml ~~~ -json2yaml 1.2.6 +json2yaml 1.2.7 diff --git a/jsoncols.1.md b/jsoncols.1.md index 89fe487f..0a0e01b7 100644 --- a/jsoncols.1.md +++ b/jsoncols.1.md @@ -1,4 +1,4 @@ -%jsoncols(1) user manual | version 1.2.6 14d3709 +%jsoncols(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -110,6 +110,6 @@ Would yield "Doe, Jane","jane.doe@xample.org",42 ~~~ -jsoncols 1.2.6 +jsoncols 1.2.7 diff --git a/jsonjoin.1.md b/jsonjoin.1.md index 1efc98cd..507f93a5 100644 --- a/jsonjoin.1.md +++ b/jsonjoin.1.md @@ -1,4 +1,4 @@ -%jsonjoin(1) user manual | version 1.2.6 14d3709 +%jsonjoin(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 diff --git a/jsonmunge.1.md b/jsonmunge.1.md index b0eaf3a5..26db0765 100644 --- a/jsonmunge.1.md +++ b/jsonmunge.1.md @@ -1,4 +1,4 @@ -%jsonmunge(1) user manual | version 1.2.6 14d3709 +%jsonmunge(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -73,5 +73,5 @@ This would yield "Doe, Jane" ~~~ -jsonmunge 1.2.6 +jsonmunge 1.2.7 diff --git a/jsonrange.1.md b/jsonrange.1.md index 646fde04..3f38c486 100644 --- a/jsonrange.1.md +++ b/jsonrange.1.md @@ -1,4 +1,4 @@ -%jsonrange(1) user manual | version 1.2.6 14d3709 +%jsonrange(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -202,5 +202,5 @@ would yield 20 ~~~ -jsonrange 1.2.6 +jsonrange 1.2.7 diff --git a/man/man1/codemeta2cff.1 b/man/man1/codemeta2cff.1 index cfcf0584..5fa934e1 100644 --- a/man/man1/codemeta2cff.1 +++ b/man/man1/codemeta2cff.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "codemeta2cff" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "codemeta2cff" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME codemeta2cff .SH SYSNOPSIS diff --git a/man/man1/csv2json.1 b/man/man1/csv2json.1 index 65a599af..5114609a 100644 --- a/man/man1/csv2json.1 +++ b/man/man1/csv2json.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "csv2json" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "csv2json" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME csv2json .SH SYNOPSIS diff --git a/man/man1/csv2mdtable.1 b/man/man1/csv2mdtable.1 index 0609ead0..f7380eb2 100644 --- a/man/man1/csv2mdtable.1 +++ b/man/man1/csv2mdtable.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "csv2mdtable" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "csv2mdtable" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME csv2mdtable .SH SYNOPSIS @@ -52,6 +52,6 @@ Convert data1.csv to data1.md using options. csv2mdtable \-i data1.csv \-o data1.md .EE .PP -csv2mdtable 1.2.6 +csv2mdtable 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/csv2tab.1 b/man/man1/csv2tab.1 index b3b28546..495b477c 100644 --- a/man/man1/csv2tab.1 +++ b/man/man1/csv2tab.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "csv2tab" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "csv2tab" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME csv2tab .SH SYNOPSIS @@ -40,6 +40,6 @@ This would yield Doe, Jane jane.doe\[at]example.org 42 .EE .PP -csv2tab 1.2.6 +csv2tab 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/csv2xlsx.1 b/man/man1/csv2xlsx.1 index 60717f24..01807560 100644 --- a/man/man1/csv2xlsx.1 +++ b/man/man1/csv2xlsx.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "csv2xlsx" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "csv2xlsx" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME csv2xlsx .SH SYNOPSIS @@ -60,6 +60,6 @@ This creates a new `My worksheet 1' in the Excel Workbook called This does the same but the contents of data.csv are piped into the workbook\[cq]s `My worksheet 2' sheet. .PP -csv2xlsx 1.2.6 +csv2xlsx 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/csvcleaner.1 b/man/man1/csvcleaner.1 index 698f6e59..406d36b6 100644 --- a/man/man1/csvcleaner.1 +++ b/man/man1/csvcleaner.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "csvcleaner" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "csvcleaner" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME csvcleaner .SH SYNOPSIS @@ -102,6 +102,6 @@ Trim leading and trailing spaces from output. cat mysheet.csv | csvcleaner \-trim\-space .EE .PP -csvcleaner 1.2.6 +csvcleaner 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/csvcols.1 b/man/man1/csvcols.1 index a68f01ef..b946280a 100644 --- a/man/man1/csvcols.1 +++ b/man/man1/csvcols.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "csvcols" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "csvcols" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME csvcols .SH SYNOPSIS @@ -80,6 +80,6 @@ Using options filter a 3 column CSV file for columns 1,3 into 2col.csv csvcols \-i 3col.csv \-col 1,3 \-o 2col.csv .EE .PP -csvcols 1.2.6 +csvcols 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/csvfind.1 b/man/man1/csvfind.1 index 9c380639..82eed11f 100644 --- a/man/man1/csvfind.1 +++ b/man/man1/csvfind.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "csvfind" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "csvfind" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME csvfind .SH SYNOPSIS @@ -107,6 +107,6 @@ You can also search for phrases in columns. csvfind \-i books.csv \-col=2 \-contains \[dq]Red Book\[dq] .EE .PP -csvfind 1.2.6 +csvfind 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/csvjoin.1 b/man/man1/csvjoin.1 index 82173c4b..c1350e09 100644 --- a/man/man1/csvjoin.1 +++ b/man/man1/csvjoin.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "csvjoin" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "csvjoin" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME csvjoin .SH SYNOPSIS @@ -95,6 +95,6 @@ with the results being written to merged\-data.csv.. \-output=merged\-data.csv .EE .PP -csvjoin 1.2.6 +csvjoin 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/csvrows.1 b/man/man1/csvrows.1 index a16ea1b4..629e8612 100644 --- a/man/man1/csvrows.1 +++ b/man/man1/csvrows.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "csvrows" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "csvrows" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME csvrows .SH SYNOPSIS @@ -89,6 +89,6 @@ header row from 10row.csv. csvrows \-i 10row.csv \-header=true \-random=3 .EE .PP -csvrows 1.2.6 +csvrows 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/finddir.1 b/man/man1/finddir.1 index 45e0fc7f..1d191d92 100644 --- a/man/man1/finddir.1 +++ b/man/man1/finddir.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "finddir" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "finddir" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME finddir .SH SYNOPSIS @@ -55,6 +55,6 @@ Find all subdirectories starting with \[lq]img\[rq]. finddir \-p img .EE .PP -finddir 1.2.6 +finddir 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/findfile.1 b/man/man1/findfile.1 index 36af00bb..5701e2dc 100644 --- a/man/man1/findfile.1 +++ b/man/man1/findfile.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "findfile" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "findfile" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME findfile .SH SYNOPSIS @@ -56,6 +56,6 @@ extension of \[lq].md\[rq]. findfile \-s .md .EE .PP -findfile 1.2.6 +findfile 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/json2toml.1 b/man/man1/json2toml.1 index ffa17344..3a6ffd74 100644 --- a/man/man1/json2toml.1 +++ b/man/man1/json2toml.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "json2toml" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "json2toml" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME json2toml .SH SYNOPSIS @@ -39,6 +39,6 @@ These would get the file named \[lq]my.json\[rq] and save it as my.toml cat my.json | json2toml \-i \- > my.toml .EE .PP -json2toml 1.2.6 +json2toml 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/json2yaml.1 b/man/man1/json2yaml.1 index 196df3ae..8a46e5c6 100644 --- a/man/man1/json2yaml.1 +++ b/man/man1/json2yaml.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "json2yaml" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "json2yaml" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME json2yaml .SH SYNOPSIS @@ -37,6 +37,6 @@ These would get the file named \[lq]my.json\[rq] and save it as my.yaml cat my.json | json2yaml \-i \- > my.taml .EE .PP -json2yaml 1.2.6 +json2yaml 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/jsoncols.1 b/man/man1/jsoncols.1 index fa285574..36b4b0d7 100644 --- a/man/man1/jsoncols.1 +++ b/man/man1/jsoncols.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "jsoncols" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "jsoncols" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME jsoncols .SH SYNOPSIS @@ -109,6 +109,6 @@ Would yield \[dq]Doe, Jane\[dq],\[dq]jane.doe\[at]xample.org\[dq],42 .EE .PP -jsoncols 1.2.6 +jsoncols 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/jsonjoin.1 b/man/man1/jsonjoin.1 index 64211dee..c4a2f864 100644 --- a/man/man1/jsonjoin.1 +++ b/man/man1/jsonjoin.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "jsonjoin" "1" "2024\-02\-26" "user manual" "version 1.2.6 72e3344" +.TH "jsonjoin" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME jsonjoin .SH SYNOPSIS diff --git a/man/man1/jsonmunge.1 b/man/man1/jsonmunge.1 index eb978095..d9418287 100644 --- a/man/man1/jsonmunge.1 +++ b/man/man1/jsonmunge.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "jsonmunge" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "jsonmunge" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME jsonmunge .SH SYNOPSIS @@ -63,6 +63,6 @@ This would yield \[dq]Doe, Jane\[dq] .EE .PP -jsonmunge 1.2.6 +jsonmunge 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/jsonrange.1 b/man/man1/jsonrange.1 index bd95ce31..e38c44d5 100644 --- a/man/man1/jsonrange.1 +++ b/man/man1/jsonrange.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "jsonrange" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "jsonrange" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME jsonrange .SH SYNOPSIS @@ -203,6 +203,6 @@ would yield 20 .EE .PP -jsonrange 1.2.6 +jsonrange 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/mergepath.1 b/man/man1/mergepath.1 index ddb6b08f..84e7b554 100644 --- a/man/man1/mergepath.1 +++ b/man/man1/mergepath.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "mergepath" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "mergepath" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME mergepath .SH SYNOPSIS @@ -48,6 +48,6 @@ This would put your home bin directory at the beginning of your path. export PATH=$(mergepath \-p $HOME/bin) .EE .PP -mergepath 1.2.6 +mergepath 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/range.1 b/man/man1/range.1 index bf080d99..5f4a3d89 100644 --- a/man/man1/range.1 +++ b/man/man1/range.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "range" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "range" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME range .SH SYNOPSIS diff --git a/man/man1/reldate.1 b/man/man1/reldate.1 index 9d39d1bc..492ca460 100644 --- a/man/man1/reldate.1 +++ b/man/man1/reldate.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "reldate" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "reldate" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME reldate .SH SYNOPSIS @@ -124,6 +124,6 @@ As that is the Monday of the week containing 2015\-02\-10. Weekday names case insensitive and can be the first three letters of the English names or full English names (e.g.\ Monday, monday, Mon, mon). .PP -reldate 1.2.6 +reldate 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/reltime.1 b/man/man1/reltime.1 index d5c9b48c..e155b63b 100644 --- a/man/man1/reltime.1 +++ b/man/man1/reltime.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "reltime" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "reltime" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME reltime .SH SYNOPSIS diff --git a/man/man1/sql2csv.1 b/man/man1/sql2csv.1 index 9ae144f9..373f19cb 100644 --- a/man/man1/sql2csv.1 +++ b/man/man1/sql2csv.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "sql2csv" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "sql2csv" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME sql2csv .SH SYNOPSIS @@ -109,6 +109,6 @@ sql2csv dbcfg.json `SELECT * FROM mytable LIMIT 10' .PD >ten\-rows.csv .PP -sql2csv 1.2.6 +sql2csv 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/string.1 b/man/man1/string.1 index 2c87345b..fffd351b 100644 --- a/man/man1/string.1 +++ b/man/man1/string.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "string" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "string" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME string .SH SYNOPSIS @@ -174,6 +174,6 @@ Join a JSON array of strings into a newline delimited list string join \[aq]\[rs]n\[aq] \[aq][\[dq]one\[dq],\[dq]two\[dq],\[dq]three\[dq],\[dq]four\[dq],\[dq]five\[dq]]\[aq] .EE .PP -string 1.2.6 +string 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/tab2csv.1 b/man/man1/tab2csv.1 index a2f45a90..a68f2e1c 100644 --- a/man/man1/tab2csv.1 +++ b/man/man1/tab2csv.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "tab2csv" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "tab2csv" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME tab2csv .SH SYNOPSIS @@ -53,6 +53,6 @@ This would yield \[dq]Doe, Jane\[dq],\[dq]jane.doe\[at]example.org\[dq],42 .EE .PP -tab2csv 1.2.6 +tab2csv 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/timefmt.1 b/man/man1/timefmt.1 index ecc409f7..e34beb5a 100644 --- a/man/man1/timefmt.1 +++ b/man/man1/timefmt.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "timefmt" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "timefmt" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME timefmt .SH SYNOPSIS @@ -62,6 +62,6 @@ Format the MySQL date/time of 8:08am, July 2, 2016 .PP Yields \[lq]02 Dec 17 08:08 UTC\[rq] .PP -timefmt 1.2.6 +timefmt 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/toml2json.1 b/man/man1/toml2json.1 index 37b774be..e840d957 100644 --- a/man/man1/toml2json.1 +++ b/man/man1/toml2json.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "toml2json" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "toml2json" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME toml2json .SH SYNOPSIS @@ -41,6 +41,6 @@ These would get the file named \[lq]my.toml\[rq] and save it as my.json cat my.toml | toml2json \-i \- > my.json .EE .PP -toml2json 1.2.6 +toml2json 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/urlparse.1 b/man/man1/urlparse.1 index 7d5c2cab..23f26bf9 100644 --- a/man/man1/urlparse.1 +++ b/man/man1/urlparse.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "urlparse" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "urlparse" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME urlparse .SH SYNOPSIS @@ -104,6 +104,6 @@ Returns \[lq].html\[rq]. Without options urlparse returns protocol, host and path fields separated by a tab. .PP -urlparse 1.2.6 +urlparse 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/xlsx2csv.1 b/man/man1/xlsx2csv.1 index 134a58fb..441d7934 100644 --- a/man/man1/xlsx2csv.1 +++ b/man/man1/xlsx2csv.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "xlsx2csv" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "xlsx2csv" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME xlsx2csv .SH SYNOPSIS @@ -62,6 +62,6 @@ Putting it all together in a shell script. done .EE .PP -xlsx2csv 1.2.6 +xlsx2csv 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/xlsx2json.1 b/man/man1/xlsx2json.1 index 71286ec5..9689d945 100644 --- a/man/man1/xlsx2json.1 +++ b/man/man1/xlsx2json.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "xlsx2json" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "xlsx2json" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME xlsx2json .SH SYNOPSIS @@ -63,6 +63,6 @@ JSON documents.. done .EE .PP -xlsx2json 1.2.6 +xlsx2json 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/man/man1/yaml2json.1 b/man/man1/yaml2json.1 index 5241d51a..d86a6b1b 100644 --- a/man/man1/yaml2json.1 +++ b/man/man1/yaml2json.1 @@ -1,6 +1,6 @@ .\" Automatically generated by Pandoc 3.1.12 .\" -.TH "yaml2json" "1" "{release_date}" "user manual" "version 1.2.6 {release_hash}" +.TH "yaml2json" "1" "2024\-02\-27" "user manual" "version 1.2.7 ede8965" .SH NAME yaml2json .SH SYNOPSIS @@ -41,6 +41,6 @@ These would get the file named \[lq]my.yaml\[rq] and save it as my.json cat my.yaml | yaml2json \-i \- > my.json .EE .PP -yaml2json 1.2.6 +yaml2json 1.2.7 .SH AUTHORS R. S. Doiel. diff --git a/mergepath.1.md b/mergepath.1.md index b9275586..fe5f2364 100644 --- a/mergepath.1.md +++ b/mergepath.1.md @@ -1,4 +1,4 @@ -%mergepath(1) user manual | version 1.2.6 14d3709 +%mergepath(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -58,5 +58,5 @@ This would put your home bin directory at the beginning of your path. export PATH=$(mergepath -p $HOME/bin) ~~~ -mergepath 1.2.6 +mergepath 1.2.7 diff --git a/range.1.md b/range.1.md index 50697ed6..d9557596 100644 --- a/range.1.md +++ b/range.1.md @@ -1,4 +1,4 @@ -%range(1) user manual | version 1.2.6 14d3709 +%range(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 diff --git a/reldate.1.md b/reldate.1.md index c7945455..e6edda33 100644 --- a/reldate.1.md +++ b/reldate.1.md @@ -1,4 +1,4 @@ -%reldate(1) user manual | version 1.2.6 14d3709 +%reldate(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -126,5 +126,5 @@ As that is the Monday of the week containing 2015-02-10. Weekday names case insensitive and can be the first three letters of the English names or full English names (e.g. Monday, monday, Mon, mon). -reldate 1.2.6 +reldate 1.2.7 diff --git a/reltime.1.md b/reltime.1.md index 775ed4fc..da55f9ba 100644 --- a/reltime.1.md +++ b/reltime.1.md @@ -1,4 +1,4 @@ -%reltime(1) user manual | version 1.2.6 14d3709 +%reltime(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 diff --git a/sql2csv.1.md b/sql2csv.1.md index 41ff6a01..cab23507 100644 --- a/sql2csv.1.md +++ b/sql2csv.1.md @@ -1,4 +1,4 @@ -%sql2csv(1) user manual | version 1.2.6 14d3709 +%sql2csv(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -110,5 +110,5 @@ a file if desired. sql2csv dbcfg.json 'SELECT * FROM mytable LIMIT 10' \ >ten-rows.csv -sql2csv 1.2.6 +sql2csv 1.2.7 diff --git a/string.1.md b/string.1.md index 93d4d0e7..27d3568b 100644 --- a/string.1.md +++ b/string.1.md @@ -1,4 +1,4 @@ -%string(1) user manual | version 1.2.6 14d3709 +%string(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -163,5 +163,5 @@ Join a JSON array of strings into a newline delimited list string join '\n' '["one","two","three","four","five"]' ~~~ -string 1.2.6 +string 1.2.7 diff --git a/tab2csv.1.md b/tab2csv.1.md index 44298c45..0d91d5fd 100644 --- a/tab2csv.1.md +++ b/tab2csv.1.md @@ -1,4 +1,4 @@ -%tab2csv(1) user manual | version 1.2.6 14d3709 +%tab2csv(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -62,6 +62,6 @@ This would yield "Doe, Jane","jane.doe@example.org",42 ~~~ -tab2csv 1.2.6 +tab2csv 1.2.7 diff --git a/timefmt.1.md b/timefmt.1.md index 84829ab3..0306faea 100644 --- a/timefmt.1.md +++ b/timefmt.1.md @@ -1,4 +1,4 @@ -%timefmt(1) user manual | version 1.2.6 14d3709 +%timefmt(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -71,5 +71,5 @@ Format the MySQL date/time of 8:08am, July 2, 2016 Yields "02 Dec 17 08:08 UTC" -timefmt 1.2.6 +timefmt 1.2.7 diff --git a/toml2json.1.md b/toml2json.1.md index 40399a95..1bb29693 100644 --- a/toml2json.1.md +++ b/toml2json.1.md @@ -1,4 +1,4 @@ -%toml2json(1) user manual | version 1.2.6 14d3709 +%toml2json(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -51,5 +51,5 @@ These would get the file named "my.toml" and save it as my.json cat my.toml | toml2json -i - > my.json ~~~ -toml2json 1.2.6 +toml2json 1.2.7 diff --git a/urlparse.1.md b/urlparse.1.md index 3ea5d8ab..14650c02 100644 --- a/urlparse.1.md +++ b/urlparse.1.md @@ -1,4 +1,4 @@ -%urlparse(1) user manual | version 1.2.6 14d3709 +%urlparse(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -107,5 +107,5 @@ Get extension. Returns ".html". Without options urlparse returns protocol, host and path fields separated by a tab. -urlparse 1.2.6 +urlparse 1.2.7 diff --git a/version.go b/version.go index ab3b6dcc..9feb3eab 100644 --- a/version.go +++ b/version.go @@ -6,13 +6,13 @@ import ( const ( // Version number of release - Version = "1.2.6" + Version = "1.2.7" // ReleaseDate, the date version.go was generated ReleaseDate = "2024-02-27" // ReleaseHash, the Git hash when version.go was generated - ReleaseHash = "14d3709" + ReleaseHash = "ede8965" LicenseText = ` Copyright (c) 2023, Caltech All rights not granted herein are expressly diff --git a/xlsx2csv.1.md b/xlsx2csv.1.md index b3b38900..2117b63e 100644 --- a/xlsx2csv.1.md +++ b/xlsx2csv.1.md @@ -1,4 +1,4 @@ -%xlsx2csv(1) user manual | version 1.2.6 14d3709 +%xlsx2csv(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -72,6 +72,6 @@ Putting it all together in a shell script. done ~~~ -xlsx2csv 1.2.6 +xlsx2csv 1.2.7 diff --git a/xlsx2json.1.md b/xlsx2json.1.md index 68ca340a..6ceee947 100644 --- a/xlsx2json.1.md +++ b/xlsx2json.1.md @@ -1,4 +1,4 @@ -%xlsx2json(1) user manual | version 1.2.6 14d3709 +%xlsx2json(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -72,6 +72,6 @@ into JSON documents.. done ~~~ -xlsx2json 1.2.6 +xlsx2json 1.2.7 diff --git a/yaml2json.1.md b/yaml2json.1.md index 26d5db28..d0cb1e5e 100644 --- a/yaml2json.1.md +++ b/yaml2json.1.md @@ -1,4 +1,4 @@ -%yaml2json(1) user manual | version 1.2.6 14d3709 +%yaml2json(1) user manual | version 1.2.7 ede8965 % R. S. Doiel % 2024-02-27 @@ -51,5 +51,5 @@ These would get the file named "my.yaml" and save it as my.json cat my.yaml | yaml2json -i - > my.json ~~~ -yaml2json 1.2.6 +yaml2json 1.2.7