github.com/hobbeswalsh/terraform@v0.3.7-0.20150619183303-ad17cf55a0fa/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.6.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"