cyberark/secretless-broker

View on GitHub
pkg/secretless/version.go

Summary

Maintainability
A
0 mins
Test Coverage
package secretless

import "fmt"

// Version field is a SemVer that should indicate the baked-in version
// of the broker
var Version = "1.7.20"

// Tag field denotes the specific build type for the broker. It may
// be replaced by compile-time variables if needed to provide the git
// commit information in the final binary. See `Static long version tags`
// in the `Building` section of `CONTRIBUTING.md` for more information on
// this variable.
var Tag = "dev"

// FullVersionName is the user-visible aggregation of version and tag
// of this codebase
var FullVersionName = fmt.Sprintf("%s-%s", Version, Tag)