aboutsummaryrefslogtreecommitdiff
path: root/weed/util/constants.go
blob: d1e5609b605046eedfc1eef9e8498910409cac49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package util

import (
	"fmt"
)

var (
	VERSION_NUMBER = fmt.Sprintf("%.02f", 3.07)
	VERSION        = sizeLimit + " " + VERSION_NUMBER
	COMMIT         = ""
)

func Version() string {
	return VERSION + " " + COMMIT
}