diff --git a/CHANGELOG.md b/CHANGELOG.md index e6ea945d0..0db78551f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.3.0 (Unreleased) +## 0.2.2 (6 August 2018) BUG FIXES: * Fix an issue where if an evaluation had filtered nodes Levant would exit immediately rather than tracking the deployment which could still succeed [GH-221](https://github.com/jrasell/levant/pull/221) diff --git a/Dockerfile b/Dockerfile index a3c2c0479..609816142 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.1 +ENV LEVANT_VERSION 0.2.2 WORKDIR /usr/bin/ diff --git a/README.md b/README.md index 575ce6d45..b44158fda 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.1/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.2/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 38c9c36b7..e4fd6790a 100644 --- a/version/version.go +++ b/version/version.go @@ -3,12 +3,12 @@ package version import "fmt" // Version is the main version number that is being run at the moment. -const Version = "0.3.0" +const Version = "0.2.2" // 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 {