...

Source file src/github.com/docker/distribution/version/version.go

Documentation: github.com/docker/distribution/version

     1  package version
     2  
     3  // Package is the overall, canonical project import path under which the
     4  // package was built.
     5  var Package = "github.com/docker/distribution"
     6  
     7  // Version indicates which version of the binary is running. This is set to
     8  // the latest release tag by hand, always suffixed by "+unknown". During
     9  // build, it will be replaced by the actual version. The value here will be
    10  // used if the registry is run after a go get based install.
    11  var Version = "v2.8.3+unknown"
    12  
    13  // Revision is filled with the VCS (e.g. git) revision being used to build
    14  // the program at linking time.
    15  var Revision = ""
    16  

View as plain text