Documentation ¶
Index ¶
Constants ¶
View Source
const ( IndexerVersionMajor = 1 // Q-Client major version component of the current release IndexerVersionMinor = 0 // Q-Client minor version component of the current release IndexerVersionPatch = 0 // Q-Client patch version component of the current release IndexerVersionMeta = "stable" // Q-Client version metadata to append to the version string )
Variables ¶
View Source
var IndexerVersion = func() string { return fmt.Sprintf("%d.%d.%d", IndexerVersionMajor, IndexerVersionMinor, IndexerVersionPatch) }()
IndexerVersion holds the textual indexer version string.
View Source
var IndexerVersionWithMeta = func() string { v := IndexerVersion if IndexerVersionMeta != "" { v += "-" + IndexerVersionMeta } return v }()
IndexerVersionWithMeta holds the textual indexer version string including the metadata.
Functions ¶
func VersionWithCommit ¶
Types ¶
Click to show internal directories.
Click to hide internal directories.