https://github.com/google/cayley
Raw File
Tip revision: bf2903edd9d542fe18f1fc4fd33763a2ce2b162d authored by sah607 on 21 September 2017, 22:03:09 UTC
Merge branch 'master' of https://github.com/michaelqiu94/cayley
Tip revision: bf2903e
version.go
package version

var (
	Version = "0.7.0-alpha"

	// 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