summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCaleb Bassi <calebjbassi@gmail.com>2018-04-08 16:56:06 -0700
committerCaleb Bassi <calebjbassi@gmail.com>2018-04-08 21:15:01 -0700
commitdfc92eb7ad2f13d5f19decf6684ba316154918d0 (patch)
tree27ab0d80a0a9922d3e656c69827eb518e55b7182
parent8009e1da0f108dbf883a7169870ef94a5016730a (diff)
Bump version
-rwxr-xr-xbuild.sh2
-rwxr-xr-xdownload.sh2
-rw-r--r--main.go2
3 files changed, 3 insertions, 3 deletions
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)