// Package version provides version information for the Articulate Parser. // It includes the current version, build time, and Git commit hash. package version // Version information. var ( // Version is the current version of the application. Version = "0.3.0" // BuildTime is the time the binary was built. BuildTime = "unknown" // GitCommit is the git commit hash. GitCommit = "unknown" )