version.go 477 B

1234567891011
  1. package version
  2. // Package is the overall, canonical project import path under which the
  3. // package was built.
  4. var Package = "github.com/docker/distribution"
  5. // Version indicates which version of the binary is running. This is set to
  6. // the latest release tag by hand, always suffixed by "+unknown". During
  7. // build, it will be replaced by the actual version. The value here will be
  8. // used if the registry is run after a go get based install.
  9. var Version = "v2.4.0+unknown"