https://github.com/google/cayley
Raw File
Tip revision: 6a7823c3e9b7f84fe393faabaf02e1e389cfc2da authored by Luis Fung on 15 February 2019, 00:18:19 UTC
Code cleanup
Tip revision: 6a7823c
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