Merge pull request #2951 from jen20/add-dev-marker

meta: Set main.VersionPrerelease="dev"
This commit is contained in:
Michael Schurter 2017-08-02 09:26:43 -07:00 committed by GitHub
commit f38bf52b29
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ const Version = "0.6.0"
// A pre-release marker for the version. If this is "" (empty string) // 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 // then it means that it is a final release. Otherwise, this is a pre-release
// such as "dev" (in development), "beta", "rc1", etc. // such as "dev" (in development), "beta", "rc1", etc.
const VersionPrerelease = "" const VersionPrerelease = "dev"
// GetVersionParts returns the Nomad version strings. Printing of the Nomad // GetVersionParts returns the Nomad version strings. Printing of the Nomad
// version should be used in conjunction with the PrettyVersion method. // version should be used in conjunction with the PrettyVersion method.