├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── compare.go ├── compare_test.go ├── constraint.go ├── constraint_test.go ├── doc.go ├── group.go ├── group_test.go ├── normalize.go ├── normalize_test.go ├── sort.go ├── sort_test.go ├── stability.go └── stability_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/README.md -------------------------------------------------------------------------------- /compare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/compare.go -------------------------------------------------------------------------------- /compare_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/compare_test.go -------------------------------------------------------------------------------- /constraint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/constraint.go -------------------------------------------------------------------------------- /constraint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/constraint_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/doc.go -------------------------------------------------------------------------------- /group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/group.go -------------------------------------------------------------------------------- /group_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/group_test.go -------------------------------------------------------------------------------- /normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/normalize.go -------------------------------------------------------------------------------- /normalize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/normalize_test.go -------------------------------------------------------------------------------- /sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/sort.go -------------------------------------------------------------------------------- /sort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/sort_test.go -------------------------------------------------------------------------------- /stability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/stability.go -------------------------------------------------------------------------------- /stability_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-version/HEAD/stability_test.go --------------------------------------------------------------------------------