Files
Packer-Cn/version/version.go
T

56 lines
1.6 KiB
Go
Raw Normal View History

// Copyright (c) HashiCorp, Inc.
2023-08-10 15:53:29 -07:00
// SPDX-License-Identifier: BUSL-1.1
2016-04-21 13:19:43 -07:00
package version
import (
"github.com/hashicorp/go-version"
2020-12-17 13:29:25 -08:00
pluginVersion "github.com/hashicorp/packer-plugin-sdk/version"
2016-04-21 13:19:43 -07:00
)
2014-10-27 20:51:34 -07:00
2022-02-25 15:56:20 -08:00
var (
// The git commit that was compiled. This will be filled in by the compiler.
GitCommit string
GitDescribe string
2014-10-27 20:51:34 -07:00
2022-02-25 15:56:20 -08:00
// Whether cgo is enabled or not; set at build time
CgoEnabled bool
2014-10-27 20:51:34 -07:00
// The next version number that will be released. This will be updated after every release
// Version must conform to the format expected by github.com/hashicorp/go-version
// for tests to work.
// A pre-release marker for the version can also be specified (e.g -dev). If this is omitted
2022-02-25 15:56:20 -08:00
// The main version number that is being run at the moment.
2023-05-31 11:50:56 -04:00
Version = "1.10.0"
2022-02-25 15:56:20 -08: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.
2022-12-13 14:29:25 -05:00
VersionPrerelease = "dev"
VersionMetadata = ""
2022-02-25 15:56:20 -08:00
)
2016-04-21 13:19:43 -07:00
2020-11-10 14:48:06 -08:00
var PackerVersion *pluginVersion.PluginVersion
2016-04-21 13:19:43 -07:00
func FormattedVersion() string {
return PackerVersion.FormattedVersion()
2016-04-21 13:19:43 -07:00
}
// SemVer 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 SemVer *version.Version
func init() {
2020-11-10 14:48:06 -08:00
PackerVersion = pluginVersion.InitializePluginVersion(Version, VersionPrerelease)
SemVer = PackerVersion.SemVer()
}
// String returns the complete version string, including prerelease
func String() string {
return PackerVersion.String()
}