diff --git a/.travis.yml b/.travis.yml index 02f332a6da32153cce0d657666e623b978d97af6..6d4cb162a14f6dd8299e13ada11d06cd69322c06 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 51e1d0767fc067569dd6c8c2a3121d83f641167d..e4dbe4ed8018b8b03e433419773cbe3bda790414 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Boilr <br> <a href="http://travis-ci.org/tmrts/boilr"><img alt="Build Status" src="https://img.shields.io/travis/tmrts/boilr.svg?style=flat-square" /></a> <a href="https://github.com/tmrts/boilr/blob/master/LICENSE" ><img alt="License" src="https://img.shields.io/badge/license-Apache%20License%202.0-E91E63.svg?style=flat-square"/></a> -<a href="https://github.com/tmrts/boilr/releases" ><img alt="Release Version" src="https://img.shields.io/badge/release-v0.2.0-blue.svg?style=flat-square"/></a> +<a href="https://github.com/tmrts/boilr/releases" ><img alt="Release Version" src="https://img.shields.io/badge/release-v0.3.0-blue.svg?style=flat-square"/></a> <a href="http://goreportcard.com/report/tmrts/boilr" ><img alt="Code Quality" src="https://img.shields.io/badge/report%20card-A%2B-F44336.svg?style=flat-square"/></a> <a href="https://godoc.org/github.com/tmrts/boilr" ><img alt="Documentation" src="https://img.shields.io/badge/godoc-reference-5272B4.svg?style=flat-square"/></a> <a href="https://gitter.im/tmrts/boilr" ><img alt="Chat Room" src="https://img.shields.io/badge/chat-on%20gitter-00BCD4.svg?style=flat-square"/></a> diff --git a/install b/install index 52d804515bb5b1973d32f43be12a44b29bcff715..dcfae1a26d9f568fe0501d2439a654e739c5a452 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 392fe7878a5fa9dde75cd1ce3dbf6c9548cba583..8dde458357bf4fdfc9ca063683fd2db51ac835b8 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 5a92424712301141dc85e32ce7417231cdda3551..a8216bcf66fb27a182a6b3a0c947d3d26fca66ed 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`.