// Package version holds gitfed's version string, the single source of
// truth other packages (the well-known federation doc, the web UI footer)
// display it from.
package version
// Version is overridden at build time via
//
// go build -ldflags "-X git.neuromancer.ovh/bastien-mrq/gitfed/internal/version.Version=X.Y.Z"
//
// See deploy/docker/Dockerfile (reads VERSION at the repo root) and
// deploy/update.sh (bumps VERSION). Binaries built without that flag (e.g.
// `go build ./...` during development) report "dev".
var Version = "dev"