Skip to content

Commit

Permalink
Expose Terraform version internally & externally
Browse files Browse the repository at this point in the history
  • Loading branch information
radeksimko committed Jun 21, 2015
1 parent 7850bb3 commit 0fc8882
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
9 changes: 9 additions & 0 deletions terraform/version.go
Original file line number Diff line number Diff line change
@@ -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"
11 changes: 4 additions & 7 deletions version.go
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 0fc8882

Please sign in to comment.