https://github.com/google/cayley
Raw File
Tip revision: ceff218fd7be6c51e8c13609f70ada3149ad5945 authored by Yannic Bonenberger on 27 September 2017, 13:39:00 UTC
Remove debug print
Tip revision: ceff218
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