2015-06-21 06:19:24 -05:00
|
|
|
package terraform
|
|
|
|
|
2016-03-11 13:07:54 -06:00
|
|
|
import (
|
|
|
|
"github.com/hashicorp/go-version"
|
|
|
|
)
|
|
|
|
|
2015-06-21 06:19:24 -05:00
|
|
|
// The main version number that is being run at the moment.
|
2016-05-09 16:10:58 -05:00
|
|
|
const Version = "0.7.0"
|
2015-06-21 06:19:24 -05:00
|
|
|
|
|
|
|
// 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.
|
2016-07-15 17:29:21 -05:00
|
|
|
const VersionPrerelease = "rc3"
|
2016-03-11 13:07:54 -06:00
|
|
|
|
|
|
|
// SemVersion is an instance of version.Version. This has the secondary
|
|
|
|
// benefit of verifying during tests and init time that our version is a
|
|
|
|
// proper semantic version, which should always be the case.
|
|
|
|
var SemVersion = version.Must(version.NewVersion(Version))
|