diff --git a/.travis.yml b/.travis.yml index 02f332a..6d4cb16 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ sudo: false matrix: include: - go: 1.7 - env: VERSION=0.2.0 + env: VERSION=0.3.0 before_deploy: - GOARCH=amd64 GOOS=linux CGO_ENABLED=0 go build boilr.go && tar czvf boilr-$VERSION-linux_amd64.tgz boilr diff --git a/README.md b/README.md index 51e1d07..e4dbe4e 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Boilr
Build Status License -Release Version +Release Version Code Quality Documentation Chat Room diff --git a/install b/install index 52d8045..dcfae1a 100755 --- a/install +++ b/install @@ -2,8 +2,8 @@ set -u -[[ "$@" =~ --pre ]] && version=0.2.0 pre=1 || - version=0.2.0 pre=0 +[[ "$@" =~ --pre ]] && version=0.3.0 pre=1 || + version=0.3.0 pre=0 # If stdin is a tty, we are "interactive". interactive= diff --git a/pkg/boilr/configuration.go b/pkg/boilr/configuration.go index 392fe78..8dde458 100644 --- a/pkg/boilr/configuration.go +++ b/pkg/boilr/configuration.go @@ -16,7 +16,7 @@ const ( AppName = "boilr" // Version of the application - Version = "0.2.0" + Version = "0.3.0" // ConfigDirPath is the configuration directory of the application ConfigDirPath = ".config/boilr" diff --git a/wiki/Installation.md b/wiki/Installation.md index 5a92424..a8216bc 100644 --- a/wiki/Installation.md +++ b/wiki/Installation.md @@ -11,7 +11,7 @@ releases [here](https://github.com/tmrts/boilr/releases). Grab the one the suits your architecture and operating system and start using it. # Building from Source -Make sure you have setup a Go >=1.6 development environment and the `GOPATH` +Make sure you have setup a Go >= 1.7 development environment and the `GOPATH` environment variable is configured (see [official docs](https://golang.org/doc/code.html#GOPATH) for instructions) and your `PATH` includes `$GOPATH/bin`.