mirror of
https://github.com/kjanat/articulate-parser.git
synced 2026-01-16 08:22:09 +01:00
Implement versioning and build enhancements with cross-platform support
This commit is contained in:
15
internal/version/version.go
Normal file
15
internal/version/version.go
Normal 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"
|
||||
)
|
||||
Reference in New Issue
Block a user