Skip to content

Commit

Permalink
Merge pull request #206 from jrasell/f_0.2.0_release
Browse files Browse the repository at this point in the history
Update Levant for 0.2.0 release.
  • Loading branch information
jrasell committed Jul 4, 2018
2 parents 3619164 + ff9da55 commit c6e7295
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.2.0 (Unreleased)
## 0.2.0 (4 July 2018)

IMPROVEMENTS:
* New `scale-in` and `scale-out` commands allow an operator to manually scale jobs and task groups based on counts or percentages [GH-172](https://github.com/jrasell/levant/pull/172)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM alpine:latest
LABEL maintainer James Rasell<(jamesrasell@gmail.com)> (@jrasell)
LABEL vendor "jrasell"

ENV LEVANT_VERSION 0.1.1
ENV LEVANT_VERSION 0.2.0

WORKDIR /usr/bin/

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.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.0/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`.

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const Version = "0.2.0"
// 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 {
Expand Down

0 comments on commit c6e7295

Please sign in to comment.