mirror of
https://github.com/kjanat/articulate-parser.git
synced 2026-01-16 18:22:08 +01:00
Refactors the main function for improved testability by extracting the core logic into a new run function. Updates argument handling and error reporting to use return codes instead of os.Exit. Adds comprehensive test coverage for main functionality, including integration tests and validation against edge cases. Enhances README with updated code coverage and feature improvement lists. Addresses improved maintainability and testability of the application. Bumps version to 0.3.1
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.1"
|
|
|
|
// BuildTime is the time the binary was built.
|
|
BuildTime = "unknown"
|
|
|
|
// GitCommit is the git commit hash.
|
|
GitCommit = "unknown"
|
|
)
|