github.com/pdmccormick/importable-docker-buildx@v0.0.0-20240426161518-e47091289030/version/version.go (about)

     1  package version
     2  
     3  var (
     4  	// Package is filled at linking time
     5  	Package = "github.com/docker/buildx"
     6  
     7  	// Version holds the complete version number. Filled in at linking time.
     8  	Version = "v0.0.0+unknown"
     9  
    10  	// Revision is filled with the VCS (e.g. git) revision being used to build
    11  	// the program at linking time.
    12  	Revision = ""
    13  )