mirror of
https://github.com/kjanat/articulate-parser.git
synced 2026-01-16 08:22:09 +01:00
Bumps application version to 0.3.0 for new features or fixes. Enhances README diagram styling for better readability in both light and dark GitHub themes by adjusting colors and adding text color contrast.
16 lines
401 B
Go
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.3.0"
|
|
|
|
// BuildTime is the time the binary was built.
|
|
BuildTime = "unknown"
|
|
|
|
// GitCommit is the git commit hash.
|
|
GitCommit = "unknown"
|
|
)
|