diff --git a/build.sh b/build.sh index ef024bb..abf0eb5 100755 --- a/build.sh +++ b/build.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Build Steps -# 1. update version number in `gotop.go` and `download.sh` +# 1. update version number in `main.go` and `download.sh` # 2. run this script # 3. publish binaries on GitHub # 4. push changes to GitHub diff --git a/download.sh b/download.sh index c7d9ac2..7296f27 100755 --- a/download.sh +++ b/download.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -VERSION=1.2.2 +VERSION=1.2.3 download() { curl -L https://github.com/cjbassi/gotop/releases/download/$VERSION/gotop-$VERSION-${1}.tgz > gotop.tgz diff --git a/main.go b/main.go index 2538857..887381c 100644 --- a/main.go +++ b/main.go @@ -14,7 +14,7 @@ import ( "github.com/docopt/docopt-go" ) -const VERSION = "1.2.2" +const VERSION = "1.2.3" var ( termResized = make(chan bool, 1)