package version import ( "fmt" "runtime" ) // Version represents the current version of Delve. type Version struct { Major string Minor string Patch string Metadata string Build string } var ( // DelveVersion is the current version of Delve. DelveVersion = Version{ Major: "1", Minor: "7", Patch: "2", Metadata: "", //TODO(aarzilli): before updating this to 1.8.0 re-enable staticcheck test Build: "$Id$", } ) func (v Version) String() string { ver := fmt.Sprintf("Version: %s.%s.%s", v.Major, v.Minor, v.Patch) if v.Metadata != "" { ver += "-" + v.Metadata } return fmt.Sprintf("%s\nBuild: %s", ver, v.Build) } var buildInfo = func() string { return "" } func BuildInfo() string { return fmt.Sprintf("%s\n%s", runtime.Version(), buildInfo()) }