Skip to content

Commit f626ea9

Browse files
committed
release: v0.3.0
1 parent 6b3cf46 commit f626ea9

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ sudo: false
33
matrix:
44
include:
55
- go: 1.7
6-
env: VERSION=0.2.0
6+
env: VERSION=0.3.0
77

88
before_deploy:
99
- GOARCH=amd64 GOOS=linux CGO_ENABLED=0 go build boilr.go && tar czvf boilr-$VERSION-linux_amd64.tgz boilr

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Boilr
55
<br>
66
<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>
77
<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>
8-
<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>
8+
<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>
99
<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>
1010
<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>
1111
<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>

install

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
set -u
44

5-
[[ "$@" =~ --pre ]] && version=0.2.0 pre=1 ||
6-
version=0.2.0 pre=0
5+
[[ "$@" =~ --pre ]] && version=0.3.0 pre=1 ||
6+
version=0.3.0 pre=0
77

88
# If stdin is a tty, we are "interactive".
99
interactive=

pkg/boilr/configuration.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const (
1616
AppName = "boilr"
1717

1818
// Version of the application
19-
Version = "0.2.0"
19+
Version = "0.3.0"
2020

2121
// ConfigDirPath is the configuration directory of the application
2222
ConfigDirPath = ".config/boilr"

wiki/Installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ releases [here](https://github.com/tmrts/boilr/releases). Grab the one the suits
1111
your architecture and operating system and start using it.
1212

1313
# Building from Source
14-
Make sure you have setup a Go >=1.6 development environment and the `GOPATH`
14+
Make sure you have setup a Go >= 1.7 development environment and the `GOPATH`
1515
environment variable is configured
1616
(see [official docs](https://golang.org/doc/code.html#GOPATH) for instructions)
1717
and your `PATH` includes `$GOPATH/bin`.

0 commit comments

Comments
 (0)