// Package version exposes the build version stamped into every Scrabble service // binary. The default is "dev"; release builds override it through the linker // (`go build -ldflags "-X scrabble/pkg/version.Version="`), wired from the // VERSION build-arg in each service Dockerfile, which the deploy sets to the git // tag (`git describe --tags`). It surfaces as the OpenTelemetry service.version // resource attribute (see pkg/telemetry) and the SPA About screen. package version // Version is the build version, "dev" unless overridden at link time. var Version = "dev"