https://github.com/google/cayley
Raw File
Tip revision: c29b15c6dee5de87d056e4870b05acee4b00bc0f authored by 3pCode on 08 February 2019, 16:28:01 UTC
Merge pull request #2 from cayleygraph/master
Tip revision: c29b15c
version.go
package version

var (
	Version = "0.7.5"

	// git hash should be filled by:
	// 	go build -ldflags="-X github.com/cayleygraph/cayley/version.GitHash=xxxx"

	GitHash   = "dev snapshot"
	BuildDate string
)
back to top