github.com/alexissmirnov/terraform@v0.4.3-0.20150423153700-1ef9731a2f14/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  
     6  // The main version number that is being run at the moment.
     7  const Version = "0.5.0"
     8  
     9  // A pre-release marker for the version. If this is "" (empty string)
    10  // then it means that it is a final release. Otherwise, this is a pre-release
    11  // such as "dev" (in development), "beta", "rc1", etc.
    12  const VersionPrerelease = "dev"