From 7ccf68c56b23c149c09e7b7d405c49a7048c3578 Mon Sep 17 00:00:00 2001 From: James Rasell Date: Sat, 14 Sep 2019 11:49:05 +0200 Subject: [PATCH] Release version 0.2.8 --- CHANGELOG.md | 2 +- Dockerfile | 2 +- README.md | 2 +- version/version.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69164853..edb63851 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.2.8 (Unreleased) +## 0.2.8 (14 September 2019) IMPROVEMENTS: * Add `-force` flag to deploy CLI command which allows for forcing a deployment even if Levant detects 0 changes on plan [GH-296](https://github.com/jrasell/levant/pull/296) diff --git a/Dockerfile b/Dockerfile index 3597c7ec..ee3a2477 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM alpine:latest LABEL maintainer James Rasell<(jamesrasell@gmail.com)> (@jrasell) LABEL vendor "jrasell" -ENV LEVANT_VERSION 0.2.7 +ENV LEVANT_VERSION 0.2.8 WORKDIR /usr/bin/ diff --git a/README.md b/README.md index e7dc8a4d..191a5a52 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Levant is an open source templating and deployment tool for [HashiCorp Nomad](ht ## Download & Install -* The Levant binary can be downloaded from the [GitHub releases page](https://github.com/jrasell/levant/releases) using `curl -L https://github.com/jrasell/levant/releases/download/0.2.7/linux-amd64-levant -o levant` +* The Levant binary can be downloaded from the [GitHub releases page](https://github.com/jrasell/levant/releases) using `curl -L https://github.com/jrasell/levant/releases/download/0.2.8/linux-amd64-levant -o levant` * A docker image can be found on [Docker Hub](https://hub.docker.com/r/jrasell/levant/), the latest version can be downloaded using `docker pull jrasell/levant`. diff --git a/version/version.go b/version/version.go index db7c1768..40dd9c42 100644 --- a/version/version.go +++ b/version/version.go @@ -8,7 +8,7 @@ const Version = "0.2.8" // VersionPrerelease is a pre-release marker for the version. If this is "" // (empty string) then it means that it is a final release. Otherwise, this is // a pre-release such as "dev" (in development), "beta", "rc1", etc. -const VersionPrerelease = "dev" +const VersionPrerelease = "" // Get returns a human readable version of Levant. func Get() string {