From 815bd2696bab51ba9d0dae301a6ffe5b7cf82e89 Mon Sep 17 00:00:00 2001 From: Ilyes512 Date: Thu, 16 Aug 2018 13:56:41 +0200 Subject: [PATCH] Release: v0.4.4 --- .travis.yml | 2 +- README.md | 2 +- install | 4 ++-- pkg/boilr/configuration.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index af42af3..d063c14 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ sudo: false matrix: include: - go: 1.x - env: VERSION=0.4.3 + env: VERSION=0.4.4 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 c009c35..060384b 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Boilr
Build Status License -Release Version +Release Version Code Quality Documentation diff --git a/install b/install index 0a6282f..bbeb259 100755 --- a/install +++ b/install @@ -2,8 +2,8 @@ set -u -[[ "$@" =~ --pre ]] && version=0.4.3 pre=1 || - version=0.4.3 pre=0 +[[ "$@" =~ --pre ]] && version=0.4.4 pre=1 || + version=0.4.4 pre=0 # If stdin is a tty, we are "interactive". interactive= diff --git a/pkg/boilr/configuration.go b/pkg/boilr/configuration.go index 351bda7..6233517 100644 --- a/pkg/boilr/configuration.go +++ b/pkg/boilr/configuration.go @@ -16,7 +16,7 @@ const ( AppName = "boilr" // Version of the application - Version = "0.4.3" + Version = "0.4.4" // ConfigDirPath is the configuration directory of the application ConfigDirPath = ".config/boilr"