https://github.com/google/cayley
Raw File
Tip revision: d93d816a4952645324f651efc6d523650c5ebf36 authored by Luis Fung on 12 February 2019, 08:45:46 UTC
Code simplification + package-level configurable iterator/store options
Tip revision: d93d816
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