2015-01-29 23:32:49 +00:00
|
|
|
package version
|
|
|
|
|
|
|
|
// Package is the overall, canonical project import path under which the
|
|
|
|
// package was built.
|
2020-08-24 11:18:39 +00:00
|
|
|
var Package = "github.com/distribution/distribution/v3"
|
2015-01-29 23:32:49 +00:00
|
|
|
|
|
|
|
// Version indicates which version of the binary is running. This is set to
|
|
|
|
// the latest release tag by hand, always suffixed by "+unknown". During
|
|
|
|
// build, it will be replaced by the actual version. The value here will be
|
|
|
|
// used if the registry is run after a go get based install.
|
2020-08-24 11:18:39 +00:00
|
|
|
var Version = "v3.0.0+unknown"
|
2018-08-01 22:37:21 +00:00
|
|
|
|
|
|
|
// Revision is filled with the VCS (e.g. git) revision being used to build
|
|
|
|
// the program at linking time.
|
|
|
|
var Revision = ""
|