├── .github ├── FUNDING.yml └── workflows │ └── go.yml ├── LICENSE ├── README.md ├── flag.go ├── go.mod ├── init.go ├── short.go ├── test ├── go.mod ├── go.sum ├── revision_test.go └── testdata │ ├── flag.txt │ └── versioninfo.txt └── variables.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: earthboundkid 2 | -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/versioninfo/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/versioninfo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/versioninfo/HEAD/README.md -------------------------------------------------------------------------------- /flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/versioninfo/HEAD/flag.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/earthboundkid/versioninfo/v2 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/versioninfo/HEAD/init.go -------------------------------------------------------------------------------- /short.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/versioninfo/HEAD/short.go -------------------------------------------------------------------------------- /test/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/versioninfo/HEAD/test/go.mod -------------------------------------------------------------------------------- /test/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/versioninfo/HEAD/test/go.sum -------------------------------------------------------------------------------- /test/revision_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/versioninfo/HEAD/test/revision_test.go -------------------------------------------------------------------------------- /test/testdata/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/versioninfo/HEAD/test/testdata/flag.txt -------------------------------------------------------------------------------- /test/testdata/versioninfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/versioninfo/HEAD/test/testdata/versioninfo.txt -------------------------------------------------------------------------------- /variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earthboundkid/versioninfo/HEAD/variables.go --------------------------------------------------------------------------------