Files
articulate-parser/internal/version/version.go
Kaj Kowalski ec5c8c099c Update labels and bump version to 0.4.0
Standardizes dependabot labels to include 'dependencies/' prefix
for better organization and clarity.

Bumps application version to 0.4.0 to reflect recent changes
and improvements.
2025-05-28 23:31:16 +02:00

16 lines
401 B
Go

// 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.4.0"
// BuildTime is the time the binary was built.
BuildTime = "unknown"
// GitCommit is the git commit hash.
GitCommit = "unknown"
)