Files
distribution/version/version.go
Milos Gajdos d3c0df9f61 chore(release): prepare for v3.1.1 release
* Release notes added
* AUTHORS updated
* Version bump in the `version` package

Signed-off-by: Milos Gajdos <milosthegajdos@gmail.com>
2026-05-01 07:46:25 -07:00

16 lines
612 B
Go

package version
// mainpkg is the overall, canonical project import path under which the
// package was built.
var mainpkg = "github.com/distribution/distribution/v3"
// 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.
var version = "v3.1.1+unknown"
// revision is filled with the VCS (e.g. git) revision being used to build
// the program at linking time.
var revision = ""