- Fix Go version to 1.24.4 in go.mod - Add version management with version.go - Add --version flag to CLI tool - Remove deprecated LoadFromFile and LoadFromReader methods - Update tests to use new API - Create TODO.md for future improvements - Update README with Go version requirement Co-Authored-By: Claude <noreply@anthropic.com>
8 lines
191 B
Go
8 lines
191 B
Go
package smartconfig
|
|
|
|
// Version is the current version of smartconfig
|
|
const Version = "1.0.0"
|
|
|
|
// GitCommit is the git commit hash (set at build time with -ldflags)
|
|
var GitCommit = "unknown"
|