mirror of
https://github.com/kjanat/articulate-parser.git
synced 2026-01-16 08:22:09 +01:00
Introduces a modular exporter pattern supporting DOCX and Markdown formats by implementing Exporter interfaces and restructuring application logic. Enhances CI to install UPX for binary compression, excluding recent macOS binaries due to compatibility issues. Enables CGO when building binaries for all platforms, addressing potential cross-platform compatibility concerns. Bumps version to 0.1.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.1.1"
|
|
|
|
// BuildTime is the time the binary was built.
|
|
BuildTime = "unknown"
|
|
|
|
// GitCommit is the git commit hash.
|
|
GitCommit = "unknown"
|
|
)
|