diff --git a/Makefile b/Makefile index fe935fb..7bf0fc4 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PKG=github.com/cyverse/gocommands -VERSION=v0.4.5 +VERSION=v0.4.6 GIT_COMMIT?=$(shell git rev-parse HEAD) BUILD_DATE?=$(shell date -u +"%Y-%m-%dT%H:%M:%SZ") LDFLAGS?="-X '${PKG}/commons.clientVersion=${VERSION}' -X '${PKG}/commons.gitCommit=${GIT_COMMIT}' -X '${PKG}/commons.buildDate=${BUILD_DATE}'" diff --git a/README.md b/README.md index e198e87..f74ec75 100644 --- a/README.md +++ b/README.md @@ -8,19 +8,19 @@ Be sure to download a binary for your target system architecture. For Darwin-amd64 (Mac OS): ```bash -curl -L -o gocmd.tar.gz https://github.com/cyverse/gocommands/releases/download/v0.4.5/gocmd-v0.4.5-darwin-amd64.tar.gz && \ +curl -L -o gocmd.tar.gz https://github.com/cyverse/gocommands/releases/download/v0.4.6/gocmd-v0.4.6-darwin-amd64.tar.gz && \ tar zxvf gocmd.tar.gz && rm gocmd.tar.gz ``` For Linux-amd64: ```bash -curl -L -o gocmd.tar.gz https://github.com/cyverse/gocommands/releases/download/v0.4.5/gocmd-v0.4.5-linux-amd64.tar.gz && \ +curl -L -o gocmd.tar.gz https://github.com/cyverse/gocommands/releases/download/v0.4.6/gocmd-v0.4.6-linux-amd64.tar.gz && \ tar zxvf gocmd.tar.gz && rm gocmd.tar.gz ``` For Linux-arm64: ```bash -curl -L -o gocmd.tar.gz https://github.com/cyverse/gocommands/releases/download/v0.4.5/gocmd-v0.4.5-linux-arm64.tar.gz && \ +curl -L -o gocmd.tar.gz https://github.com/cyverse/gocommands/releases/download/v0.4.6/gocmd-v0.4.6-linux-arm64.tar.gz && \ tar zxvf gocmd.tar.gz && rm gocmd.tar.gz ``` diff --git a/go.mod b/go.mod index 5ffaedc..97d96c8 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,6 @@ require ( github.com/gliderlabs/ssh v0.3.5 github.com/jedib0t/go-pretty/v6 v6.3.1 github.com/kelseyhightower/envconfig v1.4.0 - github.com/rs/xid v1.3.0 github.com/sirupsen/logrus v1.8.1 github.com/spf13/cobra v1.5.0 golang.org/x/term v0.2.0 @@ -22,6 +21,7 @@ require ( github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect github.com/patrickmn/go-cache v2.1.0+incompatible // indirect github.com/rivo/uniseg v0.2.0 // indirect + github.com/rs/xid v1.3.0 // indirect github.com/spf13/pflag v1.0.5 // indirect github.com/stretchr/testify v1.8.0 // indirect golang.org/x/crypto v0.2.0 // indirect