Bumped version

This commit is contained in:
Caleb Bassi 2018-03-09 20:33:29 -08:00
parent 153eafff18
commit 043f4f06bf
3 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Build Steps # Build Steps
# 1. update version number in `gotop.go` and `install.sh` # 1. update version number in `gotop.go` and `download.sh`
# 2. run this script # 2. run this script
# 3. publish binaries on GitHub # 3. publish binaries on GitHub
# 4. push changes to GitHub # 4. push changes to GitHub
@ -11,8 +11,8 @@
VERSION=$(go run gotop.go -v) VERSION=$(go run gotop.go -v)
mkdir builds mkdir build
cd builds cd build
env GOOS=darwin GOARCH=amd64 go build ../ env GOOS=darwin GOARCH=amd64 go build ../
tar czf gotop-$VERSION-darwin_amd64.tgz gotop tar czf gotop-$VERSION-darwin_amd64.tgz gotop

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
VERSION=1.1.1 VERSION=1.2.1
download() { download() {
curl -L https://github.com/cjbassi/gotop/releases/download/$VERSION/gotop-$VERSION-${1}.tgz > gotop.tgz curl -L https://github.com/cjbassi/gotop/releases/download/$VERSION/gotop-$VERSION-${1}.tgz > gotop.tgz

View File

@ -14,7 +14,7 @@ import (
"github.com/docopt/docopt-go" "github.com/docopt/docopt-go"
) )
const VERSION = "1.1.1" const VERSION = "1.2.1"
var ( var (
termResized = make(chan bool, 1) termResized = make(chan bool, 1)