diff --git a/Makefile b/Makefile index 7bf0fc4..0e72271 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PKG=github.com/cyverse/gocommands -VERSION=v0.4.6 +VERSION=v0.4.7 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 0ac117b..a353e7f 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.6/gocmd-v0.4.6-darwin-amd64.tar.gz && \ +curl -L -o gocmd.tar.gz https://github.com/cyverse/gocommands/releases/download/v0.4.7/gocmd-v0.4.7-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.6/gocmd-v0.4.6-linux-amd64.tar.gz && \ +curl -L -o gocmd.tar.gz https://github.com/cyverse/gocommands/releases/download/v0.4.7/gocmd-v0.4.7-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.6/gocmd-v0.4.6-linux-arm64.tar.gz && \ +curl -L -o gocmd.tar.gz https://github.com/cyverse/gocommands/releases/download/v0.4.7/gocmd-v0.4.7-linux-arm64.tar.gz && \ tar zxvf gocmd.tar.gz && rm gocmd.tar.gz ```