docs: document packages, exported API and non-obvious logic

This commit is contained in:
Mathis Maquenne
2026-08-06 13:04:10 +02:00
parent 5dfd832d0d
commit b1ad9b4904
41 changed files with 757 additions and 7 deletions
+23
View File
@@ -1,3 +1,11 @@
// Package buildinfo reports the version, commit and build date of the running
// binary.
//
// Release builds have these stamped in by goreleaser through -ldflags. When
// that has not happened, as with `go build` or `go install`, the values are
// recovered from the module metadata the toolchain embeds. Anything that
// cannot be established as a real release is reported as a development build,
// which is what disables the update machinery.
package buildinfo
import (
@@ -14,12 +22,18 @@ import (
// release. Both the update check and `godeez update` refuse to run on them.
const devVersion = "dev"
// Injected at link time by goreleaser. They are unexported and read through
// the accessors below so nothing can depend on their zero values directly.
var (
version = devVersion
commit = ""
date = ""
)
// Version returns the release version without a leading "v", or devVersion
// for anything that is not a release build. Binaries built with `go install`
// carry no ldflags but do record the module version, so that is consulted
// before giving up.
func Version() string {
if version != devVersion {
return version
@@ -34,6 +48,12 @@ func Version() string {
return devVersion
}
// releaseVersion accepts v only if it names a published release, returning ""
// otherwise.
//
// Pseudo-versions describe a commit that was never tagged, and a build suffix
// marks a local or modified build. Treating either as a release would offer
// the user an update path from a version that does not exist.
func releaseVersion(v string) string {
if !semver.IsValid(v) {
return ""
@@ -49,6 +69,9 @@ func IsDev() bool {
return Version() == devVersion
}
// Commit returns the revision the binary was built from, falling back to the
// VCS stamp the Go toolchain records when building inside a repository. It
// returns "" when neither is available.
func Commit() string {
if commit != "" {
return commit