Files
rqlite/cmd/version.go
2025-09-01 19:44:25 -04:00

21 lines
476 B
Go

package cmd
// These variables are populated via the Go linker.
// Make sure the build process (linker flags) are updated, as well as go.mod.
var (
// Version of rqlite.
Version = "9"
// Commit this code was built at.
Commit = "unknown"
// Branch the code was built from.
Branch = "unknown"
// Buildtime is the timestamp when the build took place.
Buildtime = "unknown"
// CompilerCommand is the compiler used to build the binary.
CompilerCommand = "unknown"
)