Skip to content

Commit

Permalink
Merge pull request hashicorp#71 from jrasell/f_0.0.4_prep
Browse files Browse the repository at this point in the history
Prepare for 0.0.4 development effort.
  • Loading branch information
jrasell authored Dec 26, 2017
2 parents 7a3b98b + 1e40247 commit 054878c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Levant is an open source templating and deployment tool for [HashiCorp Nomad](ht

## Download

* The Levant binary can be downloaded from the [GitHub releases page]() using `curl https://github.com/jrasell/levant/releases/download/v0.0.1/linux-amd64-levant -o levant`
* The Levant binary can be downloaded from the [GitHub releases page]() using `curl https://github.com/jrasell/levant/releases/download/v0.0.3/linux-amd64-levant -o levant`

* A docker image can be found on [Docker Hub](hub.docker.com/jrasell/levant), the latest version can be downloaded using `docker pull jrasell/levant`.

Expand Down
4 changes: 2 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ package version
import "fmt"

// Version is the main version number that is being run at the moment.
const Version = "0.0.3"
const Version = "0.0.4"

// 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 = ""
const VersionPrerelease = "dev"

// Get returns a human readable version of Levant.
func Get() string {
Expand Down

0 comments on commit 054878c

Please sign in to comment.