Skip to content

Commit

Permalink
Bump up version to v0.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
iychoi committed Feb 14, 2023
1 parent 6f9eed7 commit accaf54
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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}'"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit accaf54

Please sign in to comment.