Expose Terraform version internally & externally

This commit is contained in:
Radek Simko 2015-06-21 12:19:24 +01:00
parent 7850bb39d5
commit 0fc8882e29
2 changed files with 13 additions and 7 deletions

9
terraform/version.go Normal file
View File

@ -0,0 +1,9 @@
package terraform
// The main version number that is being run at the moment.
const Version = "0.6.0"
// 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 = "dev"

View File

@ -1,12 +1,9 @@
package main
import "github.com/hashicorp/terraform/terraform"
// The git commit that was compiled. This will be filled in by the compiler.
var GitCommit string
// The main version number that is being run at the moment.
const Version = "0.6.0"
// 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 = "dev"
const Version = terraform.Version
const VersionPrerelease = terraform.VersionPrerelease