https://github.com/google/cayley
Raw File
Tip revision: 6ce5dd09d00aff6942ff0f059366659123b18e41 authored by Denys Smirnov on 26 November 2018, 15:20:26 UTC
iterator: do not drop an error in resolver
Tip revision: 6ce5dd0
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