github.com/diptanu/nomad@v0.5.7-0.20170516172507-d72e86cbe3d9/version.go (about)

     1  package main
     2  
     3  // The git commit that was compiled. This will be filled in by the compiler.
     4  var GitCommit string
     5  var GitDescribe string
     6  
     7  // The main version number that is being run at the moment.
     8  const Version = "0.6.0"
     9  
    10  // A pre-release marker for the version. If this is "" (empty string)
    11  // then it means that it is a final release. Otherwise, this is a pre-release
    12  // such as "dev" (in development), "beta", "rc1", etc.
    13  const VersionPrerelease = "dev"