https://github.com/google/cayley
Raw File
Tip revision: 1ee1c6ab2c80df0b08b6766187f8088357fd507a authored by sah607 on 21 September 2017, 20:53:57 UTC
Add Elastic Iterator
Tip revision: 1ee1c6a
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