├── .github ├── CODEOWNERS ├── dependabot.yml ├── pull_request_template.md └── workflows │ └── go-tests.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── constraint.go ├── constraint_test.go ├── go.mod ├── version.go ├── version_collection.go ├── version_collection_test.go └── version_test.go /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-version/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-version/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-version/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/go-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-version/HEAD/.github/workflows/go-tests.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-version/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-version/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-version/HEAD/README.md -------------------------------------------------------------------------------- /constraint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-version/HEAD/constraint.go -------------------------------------------------------------------------------- /constraint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-version/HEAD/constraint_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hashicorp/go-version 2 | -------------------------------------------------------------------------------- /version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-version/HEAD/version.go -------------------------------------------------------------------------------- /version_collection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-version/HEAD/version_collection.go -------------------------------------------------------------------------------- /version_collection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-version/HEAD/version_collection_test.go -------------------------------------------------------------------------------- /version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/go-version/HEAD/version_test.go --------------------------------------------------------------------------------