mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-10 15:14:36 +00:00
3b0774805c
* Versions * Update build.sh
26 lines
522 B
Go
26 lines
522 B
Go
package internal
|
|
|
|
import "fmt"
|
|
|
|
// -ldflags "-X github.com/matrix-org/dendrite/internal.branch=master"
|
|
var branch string
|
|
|
|
// -ldflags "-X github.com/matrix-org/dendrite/internal.build=alpha"
|
|
var build string
|
|
|
|
const (
|
|
VersionMajor = 0
|
|
VersionMinor = 0
|
|
VersionPatch = 0
|
|
)
|
|
|
|
func VersionString() string {
|
|
version := fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch)
|
|
if branch != "" {
|
|
version += fmt.Sprintf("-%s", branch)
|
|
}
|
|
if build != "" {
|
|
version += fmt.Sprintf("+%s", build)
|
|
}
|
|
return version
|
|
}
|