// Package buildinfo exposes build-time metadata stamped via -ldflags. package buildinfo // Version is the SelfPost release. It is set at build time with // // -ldflags "-X codeberg.org/mix/selfpost/internal/buildinfo.Version=" // // and must match the Docker image tag; it is used for the backup/restore // compatibility check (spec 7.5.A). Defaults to "dev" for local/unstamped builds. var Version = "dev"