Files
seaweedFS/weed/util/version/constants.go
Chris Lu 0c89185291 4.10
2026-02-08 21:16:58 -08:00

26 lines
527 B
Go

package version
import (
"fmt"
"github.com/seaweedfs/seaweedfs/weed/stats"
"github.com/seaweedfs/seaweedfs/weed/util"
)
var (
MAJOR_VERSION = int32(4)
MINOR_VERSION = int32(10)
VERSION_NUMBER = fmt.Sprintf("%d.%02d", MAJOR_VERSION, MINOR_VERSION)
VERSION = util.SizeLimit + " " + VERSION_NUMBER
COMMIT = ""
)
func init() {
// Set version info in stats for Prometheus metrics
stats.SetVersionInfo(VERSION_NUMBER, COMMIT, util.SizeLimit)
}
func Version() string {
return VERSION + " " + COMMIT
}