Implement versioning and build enhancements with cross-platform support

This commit is contained in:
2025-05-25 05:06:21 +02:00
parent 8ba48d2248
commit 48cad7144f
7 changed files with 990 additions and 7 deletions

View File

@ -0,0 +1,15 @@
// 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.1.0"
// BuildTime is the time the binary was built.
BuildTime = "unknown"
// GitCommit is the git commit hash.
GitCommit = "unknown"
)