// Package version holds the single source of truth for the build version. // // Value is overridable at build time so release artifacts carry the real tag: // // go build -ldflags="-X webui4frpc/internal/version.Version=0.1.1" ./cmd/webui4frpc // // Kept in its own package because both cmd/ and internal/httpapi report it // (main can't be imported, and httpapi must not depend on cmd). package version // Version is the running build's semantic version, without a leading "v". var Version = "0.1.1"